Skip to content

Commit

Permalink
schema-evolution:
Browse files Browse the repository at this point in the history
removed some cruft i forgot to delete earlier

git-svn-id: http://code.djangoproject.com/svn/django/branches/schema-evolution@5790 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
keredson committed Aug 3, 2007
1 parent c05d52c commit ba056e6
Showing 1 changed file with 0 additions and 20 deletions.
20 changes: 0 additions & 20 deletions django/db/backends/sqlite3/base.py
Expand Up @@ -261,26 +261,6 @@ def get_change_column_def_sql( table_name, col_name, col_type, null, unique, pri
output.append( 'DROP TABLE '+ quote_name(tmp_table_name) +';' ) output.append( 'DROP TABLE '+ quote_name(tmp_table_name) +';' )


return output return output











output = []
col_def = col_type +' '+ ('%sNULL' % (not null and 'NOT ' or ''))
if unique or primary_key:
col_def += ' '+ 'UNIQUE'
if primary_key:
col_def += ' '+ 'PRIMARY KEY'
# TODO: fake via renaming the table, building a new one and deleting the old
output.append('-- sqlite does not support column modifications '+ quote_name(table_name) +'.'+ quote_name(col_name) +' to '+ col_def)
return output


def get_add_column_sql( table_name, col_name, col_type, null, unique, primary_key ): def get_add_column_sql( table_name, col_name, col_type, null, unique, primary_key ):
output = [] output = []
Expand Down

0 comments on commit ba056e6

Please sign in to comment.