summaryrefslogtreecommitdiff
path: root/migrate/changeset/databases/sqlite.py
diff options
context:
space:
mode:
authorChris Withers <chris@simplistix.co.uk>2011-02-10 16:49:20 +0000
committerChris Withers <chris@simplistix.co.uk>2011-02-10 16:49:20 +0000
commitb5a02cb7cfc1b6c032df3fed7002e968c1932162 (patch)
tree9ffe1c6b2904f382d6662dd1d07e1278017f5ec6 /migrate/changeset/databases/sqlite.py
parentc80120da555f41a9b2eff9310b5d4bda1d0c149e (diff)
downloadsqlalchemy-migrate-b5a02cb7cfc1b6c032df3fed7002e968c1932162.tar.gz
remove the alter_metadata feature
Diffstat (limited to 'migrate/changeset/databases/sqlite.py')
-rw-r--r--migrate/changeset/databases/sqlite.py4
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)