summaryrefslogtreecommitdiffstats
path: root/main/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'main/models.py')
-rw-r--r--main/models.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/main/models.py b/main/models.py
index 45c6540..c527964 100644
--- a/main/models.py
+++ b/main/models.py
@@ -103,17 +103,6 @@ class MirrorRsync(models.Model):
class Meta:
verbose_name = 'Mirror Rsync IP'
-class AltForum(models.Model):
- id = models.AutoField(primary_key=True)
- language = models.CharField(max_length=255)
- url = models.CharField(max_length=255)
- name = models.CharField(max_length=255)
- def __unicode__(self):
- return self.name
- class Meta:
- db_table = 'alt_forums'
- verbose_name = 'AltForum'
-
class Donor(models.Model):
id = models.AutoField(primary_key=True)
name = models.CharField(max_length=255, unique=True)