I don't want to know why collections_categories exists

This commit is contained in:
Jeff Balogh 2010-08-16 21:48:57 -07:00
Родитель f807dbb498
Коммит ecdabae520
2 изменённых файлов: 1 добавлений и 8 удалений

Просмотреть файл

@ -325,14 +325,6 @@ class CollectionAddonRecommendation(models.Model):
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()

Просмотреть файл

@ -0,0 +1 @@
DROP TABLE collections_categories;