diff --git a/apps/bandwagon/models.py b/apps/bandwagon/models.py index 8d5620613c6..fc9568913ab 100644 --- a/apps/bandwagon/models.py +++ b/apps/bandwagon/models.py @@ -325,14 +325,6 @@ class Meta: db_table = 'collection_addon_recommendations' -class CollectionCategory(amo.models.ModelBase): - collection = models.ForeignKey(Collection) - category = models.ForeignKey(AddonCategory) - - class Meta(amo.models.ModelBase.Meta): - db_table = 'collection_categories' - - class CollectionFeature(amo.models.ModelBase): title = TranslatedField() tagline = TranslatedField() diff --git a/migrations/65-del-collection-cat.sql b/migrations/65-del-collection-cat.sql new file mode 100644 index 00000000000..a3950f7c53f --- /dev/null +++ b/migrations/65-del-collection-cat.sql @@ -0,0 +1 @@ +DROP TABLE collections_categories;