remove unnecessary imports
[mygpo.git] / mygpo / publisher / models.py
blobffe713c12c174fd0a59da97ff0abe6fa6c08d66f
1 from django.db import models
2 from django.contrib.auth.models import User
3 from mygpo.api.models import Podcast
5 class PodcastPublisher(models.Model):
6 user = models.ForeignKey(User)
7 podcast = models.ForeignKey(Podcast)
9 class Meta:
10 unique_together = ('user', 'podcast')
11 db_table = 'publisher'