StudE-Backend/stude/courses/models.py

11 lines
252 B
Python
Raw Normal View History

2023-06-27 14:16:40 +08:00
from django.db import models
# Create your models here.
class Course(models.Model):
course_name = models.CharField(max_length=64)
course_shortname = models.CharField(max_length=16)
def __str__(self):
return self.course_shortname