app/django/contrib/gis/db/backend/oracle/creation.py
author Mario Ferraro <fadinlight@gmail.com>
Fri, 19 Jun 2009 23:13:06 +0100
changeset 2415 69e9d5cc643f
parent 323 ff1a9aa48cfd
permissions -rw-r--r--
jQuery Spin plugin updated to version 1.1.1 Former version had a bug if max was not specified


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)