зеркало из https://github.com/mozilla/FlightDeck.git
bug 600422
* Add amo_id which will allow syncing with AMO Addons
This commit is contained in:
Родитель
9b8aab5a10
Коммит
bf7acfda58
|
@ -1278,6 +1278,9 @@ class Package(BaseModel):
|
|||
#: to have this relied on any database model
|
||||
id_number = models.CharField(max_length=255, unique=True, blank=True)
|
||||
|
||||
#: identification in AMO
|
||||
amo_id = models.IntegerField(blank=True, null=True)
|
||||
|
||||
#: name of the Package
|
||||
full_name = models.CharField(max_length=255, blank=True)
|
||||
#: made from the full_name, used to create Package directory for export
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
ALTER TABLE `jetpack_package` ADD `amo_id` INTEGER DEFAULT NULL;
|
Загрузка…
Ссылка в новой задаче