5 lines
96 B
Python
5 lines
96 B
Python
from django.db import models
|
|
|
|
|
|
class Teacher(models.Model):
|
|
first_name = models.CharField()
|