Changes between Version 4 and Version 5 of Ticket #3888, comment 2


Ignore:
Timestamp:
Oct 8, 2017, 1:32:14 PM (7 years ago)
Author:
robe

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #3888, comment 2

    v4 v5  
    2626and they should get a postgis version that says 2.5.0noraster.
    2727
    28 If people want some databases to have raster and some not, then they should do
     28If people want some databases to have raster and some not,  then they should do
    2929
    3030
     
    3232CREATE EXTENSION postgis VERSION "2.5.0noraster";
    3333}}}
     34
     35
     36If they want most of the postgis enabled databases they create to not have raster, then they are free to
     37
     38Find their postgis.control file (assuming they are not on some sort of shared DbaaS)
     39Edit it and change the default version to "2.5.0noraster"
     40
     41Then they can continue to do
     42
     43
     44{{{
     45CREATE EXTENSION postgis;
     46}}}
     47
     48as they always have.  Heck I edit the control file all the time on my dev because on my system
     49I've got like 2.3, 2.4, 2.5dev installed, and I want my restores to use the 2.4.0 stable version.
    3450
    3551