mirror of https://github.com/django/django.git
12 lines
304 B
Python
12 lines
304 B
Python
from django.db import models
|
|
|
|
|
|
class Site(models.Model):
|
|
name = models.CharField(max_length=100)
|
|
|
|
|
|
class Article(models.Model):
|
|
sites = models.ManyToManyField(Site)
|
|
headline = models.CharField(max_length=100)
|
|
publications = models.ManyToManyField("model_package.Publication", blank=True)
|