This commit is contained in:
Eden Kirin
2024-04-10 22:04:10 +02:00
parent f06b72343b
commit 929e16e2ec
9 changed files with 500 additions and 1 deletions

View File

@ -0,0 +1,10 @@
from django.db import models
class PostOffice(models.Model):
zip = models.PositiveIntegerField()
name = models.CharField(max_length=100)
class Meta:
db_table = "post_offices"
ordering = ["zip"]