blob: 88eb5382d4652b239aa2eea51188da1d634bea97 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
Updating databases from old versions of Postgis
The postgis library has its name changed, now the library is called
liblwgeom.so.1 instead of libpostgis.so.0 .
Databases created with older versions of postgis won't work properly,
until all references of libpostgis.so.0 be corrected.
To solve this problem, please, make a dump (on text format) of your
database and use the PREFIX/share/updatedb script.
sh PREFIX/share/updatedb dump.sql
A new file with '.updated' extension will be created with the library
references updated.
After that, you can restore your database using the updated file.
psql -f dump.sql.updated database
|