add an ordering column to addons_collections

This commit is contained in:
Jeff Balogh 2010-04-22 17:32:25 -07:00
Родитель 6133cf5cb5
Коммит 983a2f45e0
2 изменённых файлов: 8 добавлений и 2 удалений

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

@ -98,11 +98,15 @@ class Collection(amo.models.ModelBase):
class CollectionAddon(amo.models.ModelBase):
addon = models.ForeignKey(Addon)
collection = models.ForeignKey(Collection)
added = models.DateTimeField()
added = models.DateTimeField(auto_now_add=True)
# category (deprecated: for "Fashion Your Firefox")
comments = TranslatedField(null=True)
downloads = models.PositiveIntegerField(default=0)
user = models.ForeignKey(UserProfile)
user = models.ForeignKey(UserProfile, null=True)
ordering = models.PositiveIntegerField(default=0,
help_text='Add-ons are displayed in ascending order '
'based on this field.')
class Meta(amo.models.ModelBase.Meta):
db_table = 'addons_collections'

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

@ -0,0 +1,2 @@
ALTER TABLE addons_collections
ADD COLUMN `ordering` int(11) UNSIGNED NOT NULL DEFAULT 0;