8 lines
No EOL
203 B
Python
8 lines
No EOL
203 B
Python
from django.db import models
|
|
|
|
|
|
class Course(models.Model):
|
|
id = models.IntegerField(primary_key=True)
|
|
title = models.CharField(max_length=256)
|
|
shortcode = models.CharField(max_length=64)
|
|
|