Changes between Version 4 and Version 5 of Ticket #3888, comment 2
- Timestamp:
- 10/08/17 13:32:14 (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TabularUnified Ticket #3888, comment 2
v4 v5 26 26 and they should get a postgis version that says 2.5.0noraster. 27 27 28 If people want some databases to have raster and some not, then they should do28 If people want some databases to have raster and some not, then they should do 29 29 30 30 … … 32 32 CREATE EXTENSION postgis VERSION "2.5.0noraster"; 33 33 }}} 34 35 36 If they want most of the postgis enabled databases they create to not have raster, then they are free to 37 38 Find their postgis.control file (assuming they are not on some sort of shared DbaaS) 39 Edit it and change the default version to "2.5.0noraster" 40 41 Then they can continue to do 42 43 44 {{{ 45 CREATE EXTENSION postgis; 46 }}} 47 48 as they always have. Heck I edit the control file all the time on my dev because on my system 49 I've got like 2.3, 2.4, 2.5dev installed, and I want my restores to use the 2.4.0 stable version. 34 50 35 51