mirror of
https://github.com/lemeow125/StudE-Backend.git
synced 2024-11-17 06:19:24 +08:00
11 lines
252 B
Python
11 lines
252 B
Python
|
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
|