refactoring
[mygpo.git] / mygpo / api / models / users.py
blob2643aefcdeee2c2717bc2d2c0072fcdcd2090a8a
2 # This file is part of my.gpodder.org.
4 # my.gpodder.org is free software: you can redistribute it and/or modify it
5 # under the terms of the GNU Affero General Public License as published by
6 # the Free Software Foundation, either version 3 of the License, or (at your
7 # option) any later version.
9 # my.gpodder.org is distributed in the hope that it will be useful, but
10 # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
11 # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public
12 # License for more details.
14 # You should have received a copy of the GNU Affero General Public License
15 # along with my.gpodder.org. If not, see <http://www.gnu.org/licenses/>.
18 from django.db import models
19 from django.contrib.auth.models import User
20 from mygpo.api.models import Episode
22 class EpisodeFavorite(models.Model):
23 user = models.ForeignKey(User)
24 episode = models.ForeignKey(Episode)
25 created = models.DateTimeField(auto_now_add=True)
27 class Meta:
28 db_table = 'episode_favorites'
29 unique_together = ('user', 'episode')