app/django/contrib/gis/db/backend/oracle/creation.py
author Pawel Solyga <Pawel.Solyga@gmail.com>
Fri, 05 Dec 2008 12:24:02 +0000
changeset 664 fb4c825b24ab
parent 323 ff1a9aa48cfd
permissions -rw-r--r--
Some style fixes in soc.logic.helper.notifications module. Little changes in welcome.html template. Patch by: Pawel Solyga


def create_spatial_db(test=True, verbosity=1, autoclobber=False):
    "A wrapper over the Oracle `create_test_db` routine."
    if not test: raise NotImplementedError('This uses `create_test_db` from db/backends/oracle/creation.py')
    from django.db import connection
    connection.creation.create_test_db(verbosity, autoclobber)