Changes between Version 27 and Version 28 of InstallationGuidelines/PostgreSQL
- Timestamp:
- 10/24/10 17:30:40 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
InstallationGuidelines/PostgreSQL
v27 v28 130 130 }}} 131 131 132 == Add Geometry column to gis_location == 133 If using PostGIS, then once the tables have been created: 134 {{{ 135 su postgres 136 psql 137 \d sahana 138 SELECT AddGeometryColumn( 'public', 'gis_location', 'the_geom', 4326, 'POINT', 2 ); 139 exit 140 vim models/0000_config.py 141 deployment_settings.gis.spatialdb = True 142 }}} 132 143 == Backups == 133 144 {{{