app/django/contrib/gis/db/backend/oracle/creation.py
author Sverre Rabbelier <srabbelier@gmail.com>
Tue, 20 Jan 2009 00:11:38 +0000
changeset 823 c11a103f103d
parent 323 ff1a9aa48cfd
permissions -rw-r--r--
Add a 'pending/accepted/denied' seperation to club_app list This is not only to make it easier to see which applictions have been accepted, but also to make it possible to redirect to /club/create for the accepted applications, rather than to /club_app/edit. Patch by: Sverre Rabbelier


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)