10 lines
310 B
Python
10 lines
310 B
Python
from django.db import models
|
|
|
|
class Course(models.Model):
|
|
title = models.CharField(max_length=255)
|
|
description = models.TextField(blank=True)
|
|
created_at = models.DateTimeField(auto_now_add=True)
|
|
updated_at = models.DateTimeField(auto_now=True)
|
|
|
|
def __str__(self):
|
|
return self.title |