Implemented #10164 for new schema migration code.

Made it use 'AUTOINCREMENT' suffix for PK creation. This way it doeesn't
regress when compared with the 'traditional' DB backend creation
infrastructure.

Refs #10164.
This commit is contained in:
Ramiro Morales 2013-12-28 11:05:56 -03:00
parent f28ea02308
commit 6a6136141b
1 changed files with 5 additions and 1 deletions

View File

@ -185,6 +185,10 @@ class BaseDatabaseSchemaEditor(object):
db_params = field.db_parameters(connection=self.connection)
if db_params['check']:
definition += " CHECK (%s)" % db_params['check']
# Autoincrement SQL (for backends with inline variant)
col_type_suffix = field.db_type_suffix(connection=self.connection)
if col_type_suffix:
definition += " %s" % col_type_suffix
# Add the SQL to our big list
column_sqls.append("%s %s" % (
self.quote_name(field.column),
@ -214,7 +218,7 @@ class BaseDatabaseSchemaEditor(object):
"to_column": self.quote_name(to_column),
}
)
# Autoincrement SQL
# Autoincrement SQL (for backends with post table definition variant)
if field.get_internal_type() == "AutoField":
autoinc_sql = self.connection.ops.autoinc_sql(model._meta.db_table, field.column)
if autoinc_sql: