diff options
Diffstat (limited to 'migrate/changeset/databases')
| -rw-r--r-- | migrate/changeset/databases/sqlite.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/migrate/changeset/databases/sqlite.py b/migrate/changeset/databases/sqlite.py index 01e48ef..447412d 100644 --- a/migrate/changeset/databases/sqlite.py +++ b/migrate/changeset/databases/sqlite.py @@ -86,10 +86,8 @@ class SQLiteColumnDropper(SQLiteHelper, ansisql.ANSIColumnDropper): ' from migration_tmp' def visit_column(self,column): - # For SQLite, we *have* to remove the column so the table + # For SQLite, we *have* to remove the column here so the table # is re-created properly. - # This violates the alter_metadata settting, but that - # is going away... column.remove_from_table(column.table,unset_table=False) super(SQLiteColumnDropper,self).visit_column(column) |
