12 lines
316 B
Python
12 lines
316 B
Python
from django.db import models
|
|
|
|
|
|
class Area(models.Model):
|
|
name = models.CharField(max_length=100)
|
|
post_office = models.ForeignKey("PostOffice", on_delete=models.CASCADE)
|
|
county = models.ForeignKey("County", on_delete=models.CASCADE)
|
|
|
|
class Meta:
|
|
db_table = "areas"
|
|
ordering = ["name"]
|