| 1 | Index: db/backend/postgis/creation.py
|
|---|
| 2 | ===================================================================
|
|---|
| 3 | --- db/backend/postgis/creation.py (revision 1)
|
|---|
| 4 | +++ db/backend/postgis/creation.py (working copy)
|
|---|
| 5 | @@ -37,6 +37,11 @@
|
|---|
| 6 | # Constructing the necessary SQL to create the database (the DATABASE_USER
|
|---|
| 7 | # must possess the privileges to create a database)
|
|---|
| 8 | create_sql = 'CREATE DATABASE %s' % connection.ops.quote_name(db_name)
|
|---|
| 9 | +
|
|---|
| 10 | + # use the postgis template to create the spatial db with necessary sp's
|
|---|
| 11 | + if hasattr(settings, 'POSTGIS_TEMPLATE'):
|
|---|
| 12 | + create_sql += ' TEMPLATE %s' % settings.POSTGIS_TEMPLATE
|
|---|
| 13 | +
|
|---|
| 14 | if settings.DATABASE_USER:
|
|---|
| 15 | create_sql += ' OWNER %s' % settings.DATABASE_USER
|
|---|
| 16 |
|
|---|