summaryrefslogtreecommitdiff
path: root/tests/swappable_models/models.py
blob: 02a1eb99c0c1db077c1a21dcdc0e0d0e6972f724 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from django.db import models


class Article(models.Model):
    title = models.CharField(max_length=100)
    publication_date = models.DateField()

    class Meta:
        swappable = "TEST_ARTICLE_MODEL"


class AlternateArticle(models.Model):
    title = models.CharField(max_length=100)
    publication_date = models.DateField()
    byline = models.CharField(max_length=100)