Add artist model.
[demoscenemusic.git] / data / models.py
index 71a8362..95e69eb 100644 (file)
@@ -1,3 +1,7 @@
 from django.db import models
 
-# Create your models here.
+class Artist(models.Model):
+       name = models.CharField(max_length = 80)
+
+       def __unicode__(self):
+               return name