summaryrefslogtreecommitdiffstats
path: root/store/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'store/models.py')
-rw-r--r--store/models.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/store/models.py b/store/models.py
index 7335ab2..02de85d 100644
--- a/store/models.py
+++ b/store/models.py
@@ -123,6 +123,7 @@ class App(models.Model):
dateAdded = models.DateField(auto_now_add = True)
dateModified = models.DateField(auto_now = True)
tags = models.TextField(blank=True)
+ architecture = models.CharField(max_length=20, default='All')
def __unicode__(self):
return self.name + " [" + self.id + "]"