summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Pellerin <jpellerin@gmail.com>2006-07-25 00:46:49 +0000
committerJason Pellerin <jpellerin@gmail.com>2006-07-25 00:46:49 +0000
commit6bd4b275afd21a6b4059364593697f954f49798c (patch)
tree672bf62b1fa7a715986d7f1e6dd8bcb51891a8d8
parent6c65e612b4907be5bc202d326599d8119a9db3ff (diff)
[multi-db] Updated django.db.backends.postgresql.creation to use postgres-specific SchemaBuilder subclass.
git-svn-id: http://code.djangoproject.com/svn/django/branches/multiple-db-support@3443 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--django/db/backends/postgresql/creation.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/django/db/backends/postgresql/creation.py b/django/db/backends/postgresql/creation.py
index 3ffca28a64..7c90ac65f3 100644
--- a/django/db/backends/postgresql/creation.py
+++ b/django/db/backends/postgresql/creation.py
@@ -1,5 +1,5 @@
-from django.db.backends.ansi import sql
-builder = sql.SchemaBuilder()
+from django.db.backends.postgresql import sql
+builder = sql.PgSchemaBuilder()
# This dictionary maps Field objects to their associated PostgreSQL column
# types, as strings. Column-type strings can contain format strings; they'll