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