11 lines
240 B
Python
11 lines
240 B
Python
from django.db import models
|
|
|
|
|
|
class Person(models.Model):
|
|
name = models.CharField(max_length=100)
|
|
address = models.CharField(max_length=100)
|
|
city = models.CharField(max_length=100)
|
|
|
|
class Meta:
|
|
db_table = "persons"
|