Move to src dir.
[edumed.git] / publishers / models.py
diff --git a/publishers/models.py b/publishers/models.py
deleted file mode 100644 (file)
index 10d1947..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-from django.db import models
-
-class Publisher(models.Model):
-    name = models.CharField(max_length=255)
-    logo = models.ImageField(upload_to='publishers/logo')
-
-    def __unicode__(self):
-        return self.name