@pgpm/geotypes 0.14.0 → 0.15.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Makefile +2 -2
- package/deploy/schemas/public/domains/geolocation.sql +1 -1
- package/deploy/schemas/public/domains/geopolygon.sql +1 -1
- package/package.json +4 -4
- package/pgpm-geo-types.control +8 -0
- package/pgpm.plan +2 -2
- package/sql/pgpm-geo-types--0.14.0.sql +8 -0
- package/launchql-geo-types.control +0 -8
- package/sql/launchql-geo-types--0.9.0.sql +0 -8
package/Makefile
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pgpm/geotypes",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.15.1",
|
|
4
4
|
"description": "Geographic data types and spatial functions for PostgreSQL",
|
|
5
5
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
|
6
6
|
"contributors": [
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
"test:watch": "jest --watch"
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@pgpm/types": "0.
|
|
25
|
-
"@pgpm/verify": "0.
|
|
24
|
+
"@pgpm/types": "0.15.1",
|
|
25
|
+
"@pgpm/verify": "0.15.1"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"pgpm": "^1.0.0"
|
|
@@ -35,5 +35,5 @@
|
|
|
35
35
|
"bugs": {
|
|
36
36
|
"url": "https://github.com/constructive-io/pgpm-modules/issues"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "dee7b5e6073a88f1fac6ea4064dd01c2bf2cae44"
|
|
39
39
|
}
|
package/pgpm.plan
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
%syntax-version=1.0.0
|
|
2
|
-
%project=
|
|
3
|
-
%uri=
|
|
2
|
+
%project=pgpm-geo-types
|
|
3
|
+
%uri=pgpm-geo-types
|
|
4
4
|
|
|
5
5
|
schemas/public/schema 2017-08-11T08:11:51Z skitch <skitch@5b0c196eeb62> # add schemas/public/schema
|
|
6
6
|
schemas/public/domains/geolocation [schemas/public/schema] 2017-08-11T08:11:51Z skitch <skitch@5b0c196eeb62> # add schemas/public/domains/geolocation
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
\echo Use "CREATE EXTENSION pgpm-geo-types" to load this file. \quit
|
|
2
|
+
CREATE DOMAIN geolocation AS geometry(point, 4326);
|
|
3
|
+
|
|
4
|
+
COMMENT ON DOMAIN geolocation IS '@name pgpmInternalTypeGeoLocation';
|
|
5
|
+
|
|
6
|
+
CREATE DOMAIN geopolygon AS geometry(polygon, 4326);
|
|
7
|
+
|
|
8
|
+
COMMENT ON DOMAIN geopolygon IS '@name pgpmInternalTypeGeoPolygon';
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
\echo Use "CREATE EXTENSION launchql-geo-types" to load this file. \quit
|
|
2
|
-
CREATE DOMAIN geolocation AS geometry(point, 4326);
|
|
3
|
-
|
|
4
|
-
COMMENT ON DOMAIN geolocation IS '@name launchqlInternalTypeGeoLocation';
|
|
5
|
-
|
|
6
|
-
CREATE DOMAIN geopolygon AS geometry(polygon, 4326);
|
|
7
|
-
|
|
8
|
-
COMMENT ON DOMAIN geopolygon IS '@name launchqlInternalTypeGeoPolygon';
|