mirror of
https://github.com/django/django.git
synced 2024-11-18 07:26:04 +00:00
c3791463a5
Signed-off-by: Jason Myers <jason@jasonamyers.com>
7 lines
156 B
Python
7 lines
156 B
Python
from django.db import models
|
|
|
|
|
|
class Person(models.Model):
|
|
first_name = models.CharField(max_length=20)
|
|
last_name = models.CharField(max_length=20)
|