Files
django-htmx-presenatation/project/main/models/area.py
Eden Kirin 929e16e2ec Models
2024-04-10 22:04:10 +02:00

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"]