Skip to content

Commit

Permalink
Refs #7565. Fixed Oracle sequence resetting on child models.
Browse files Browse the repository at this point in the history
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7831 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
nightflyerkilo committed Jul 3, 2008
1 parent 1bfe994 commit ee837ad
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions django/db/backends/oracle/base.py
Expand Up @@ -162,18 +162,20 @@ def sequence_reset_sql(self, style, model_list):
output = []
query = _get_sequence_reset_sql()
for model in model_list:
for f in model._meta.fields:
for f in model._meta.local_fields:
if isinstance(f, models.AutoField):
table_name = self.quote_name(model._meta.db_table)
sequence_name = get_sequence_name(model._meta.db_table)
column_name = self.quote_name(f.db_column or f.name)
column_name = self.quote_name(f.column)
output.append(query % {'sequence': sequence_name,
'table': model._meta.db_table,
'table': table_name,
'column': column_name})
break # Only one AutoField is allowed per model, so don't bother continuing.
for f in model._meta.many_to_many:
table_name = self.quote_name(f.m2m_db_table())
sequence_name = get_sequence_name(f.m2m_db_table())
output.append(query % {'sequence': sequence_name,
'table': f.m2m_db_table(),
'table': table_name,
'column': self.quote_name('id')})
return output

Expand Down

0 comments on commit ee837ad

Please sign in to comment.