Uploading chapter 11 remaining files
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
from django.db import models
|
||||
class Grade(models.Model):
|
||||
grade_id = models.CharField(max_length=20)
|
||||
building = models.CharField(max_length=200)
|
||||
teacher = models.CharField(max_length=200)
|
||||
|
||||
def __str__(self):
|
||||
return self.grade_id
|
||||
Reference in New Issue
Block a user