From e8b44d7c093ce24c2c77674a389238efc4d58f60 Mon Sep 17 00:00:00 2001 From: Jessica Tallon Date: Tue, 28 Apr 2015 20:43:15 +0200 Subject: Add migration to remove ActivityIntermediator Migration to drop the table and removal of it from the model as it has now been superseeded by the GenericForeignKey field. --- mediagoblin/db/migrations.py | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) (limited to 'mediagoblin/db/migrations.py') diff --git a/mediagoblin/db/migrations.py b/mediagoblin/db/migrations.py index 8661c95a..70bf6234 100644 --- a/mediagoblin/db/migrations.py +++ b/mediagoblin/db/migrations.py @@ -1398,8 +1398,17 @@ def rename_and_remove_object_and_target(db): # Commit the changes to the database. db.commit() +@RegisterMigration(31, MIGRATIONS) +def remove_activityintermediator(db): + """ + This removes the old specific ActivityIntermediator model which has been + superseeded by the GenericForeignKey field. + """ + metadata = MetaData(bind=db.bind) + # Drop the table + ai_table = inspect_table(metadata, "core__activity_intermediators") + ai_table.drop() - - - + # Commit the changes + db.commit() -- cgit v1.2.3