Add artist model.
[demoscenemusic.git] / data / models.py
1 from django.db import models
2
3 class Artist(models.Model):
4         name = models.CharField(max_length = 80)
5
6         def __unicode__(self):
7                 return name