11 lines
225 B
Python
11 lines
225 B
Python
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"]
|