10 lines
178 B
Python
10 lines
178 B
Python
from django.db import models
|
|
|
|
|
|
class County(models.Model):
|
|
name = models.CharField(max_length=100)
|
|
|
|
class Meta:
|
|
db_table = "counties"
|
|
ordering = ["name"]
|