Geen omschrijving

models.py 207B

123456789
  1. from django.db import models
  2. # Create your models here.
  3. class Course(models.Model):
  4. name = models.CharField(max_length=255, blank=True, null=True)
  5. description = models.TextField(null=True)