summaryrefslogtreecommitdiffstats
path: root/main/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'main/models.py')
-rw-r--r--main/models.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/main/models.py b/main/models.py
index c527964..5e376ec 100644
--- a/main/models.py
+++ b/main/models.py
@@ -335,12 +335,4 @@ class TodolistPkg(models.Model):
db_table = 'todolist_pkgs'
unique_together = (('list','pkg'),)
-class ExternalProject(models.Model):
- url = models.URLField(verify_exists=False)
- name = models.CharField(max_length=64)
- description = models.CharField(max_length=128)
-
- def __unicode__(self):
- return self.name
-
# vim: set ts=4 sw=4 et: