diff options
author | Akshen | 2019-05-13 16:15:57 +0530 |
---|---|---|
committer | Akshen | 2019-05-13 16:15:57 +0530 |
commit | 8543fed00c912877375b0835b63c765baed654e2 (patch) | |
tree | c0224a75d12f3708646db6b3d78dae88bbce6ec6 /fossee_manim/models.py | |
parent | de7e3898ccb851dda8b5f9e69023d4b630e5f080 (diff) | |
download | FOSSEE_animations-8543fed00c912877375b0835b63c765baed654e2.tar.gz FOSSEE_animations-8543fed00c912877375b0835b63c765baed654e2.tar.bz2 FOSSEE_animations-8543fed00c912877375b0835b63c765baed654e2.zip |
Minor Updates
- Proposal 1 fields changed
- Forgot Password files moved
- No search Results Found
- Pincode field added
Diffstat (limited to 'fossee_manim/models.py')
-rw-r--r-- | fossee_manim/models.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fossee_manim/models.py b/fossee_manim/models.py index bdf1efc..c689f66 100644 --- a/fossee_manim/models.py +++ b/fossee_manim/models.py @@ -164,10 +164,10 @@ class Animation(models.Model): contributor = models.ForeignKey(User, on_delete=models.CASCADE) reviewer = models.ForeignKey(User, null=True, on_delete=models.CASCADE, related_name="%(app_label)s_%(class)s_related") - description = models.TextField() + outline = models.TextField() status = models.CharField(max_length=255, choices=status) - github = models.TextField() category = models.ForeignKey(Category, on_delete=models.CASCADE) + subcategory = models.CharField(max_length=255) created = models.DateTimeField(default=timezone.now) tags = TaggableManager() history = HistoricalRecords() |