Changes between Initial Version and Version 1 of Ticket #3766
- Timestamp:
- 05/27/17 08:52:54 (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #3766 – Description
initial v1 7 7 8 8 {{{ 9 CREATE TABLE logs_geom_geog_parent_part (10 log_id int GENERATED BY DEFAULT AS IDENTITY,11 log_ts timestamp with time zone NOT NULL DEFAULT current_timestamp, geom geometry(point), geog geography(point) 12 ) PARTITION BY RANGE ( log_ts);9 CREATE TABLE pgis_parent_part ( 10 id int GENERATED BY DEFAULT AS IDENTITY, 11 geom geometry(point), geog geography(point), rast raster 12 ) PARTITION BY RANGE (id); 13 13 14 14