diff options
| author | Andrew Godwin <andrew@aeracode.org> | 2012-09-07 15:56:07 -0400 |
|---|---|---|
| committer | Andrew Godwin <andrew@aeracode.org> | 2012-09-07 15:56:07 -0400 |
| commit | 3ffbfe4abcc9380fbaeeb7a370109775166b23d8 (patch) | |
| tree | 56561a55b86ea21d5b8582526d42a7e4bd956c22 | |
| parent | 8413c85f3d9a5d7f0485e621ec5836484c974f30 (diff) | |
Stubbed-out oracle schema file
| -rw-r--r-- | django/db/backends/oracle/schema.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/django/db/backends/oracle/schema.py b/django/db/backends/oracle/schema.py new file mode 100644 index 0000000000..b86e0857bb --- /dev/null +++ b/django/db/backends/oracle/schema.py @@ -0,0 +1,5 @@ +from django.db.backends.schema import BaseDatabaseSchemaEditor + + +class DatabaseSchemaEditor(BaseDatabaseSchemaEditor): + pass |
