Changes between Initial Version and Version 1 of Ticket #964


Ignore:
Timestamp:
May 19, 2011, 1:47:28 PM (13 years ago)
Author:
robe
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #964 – Description

    initial v1  
    1010
    1111This will also result in cleaner backups and restores since from what I can gather there are provisions to not backup functions etc. with data.
     12
     13This will make a bunch of other things easier.  People wanting to install in a postgis schema or migrate their existing to postgis schema.
     14
     15{{{
     16ALTER EXTENSION postgis SET SCHEMA postgis;
     17}}}
     18
     19And upgrading will be easier as well so to upgrade from an old 2.0.0 that wasn't packaged as an extension would be in theory as simple as.
     20
     21
     22{{{
     23CREATE EXTENSION postgis VERSION '2.0' FROM unpackaged;
     24}}}
     25
     26Still unclear how our minor upgrade would work or if we would have to label our version VERSION '2.0.0' to allow people to upgrade easily.
     27
     28
     29{{{
     30ALTER EXTENSION postgis UPDATE TO '2.0.1'
     31}}}