mirror of
https://github.com/lemeow125/Django-NotesApp.git
synced 2024-11-17 06:29:25 +08:00
13 lines
345 B
Python
13 lines
345 B
Python
|
from django.db import models
|
||
|
from django.utils.timezone import now
|
||
|
# Create your models here.
|
||
|
|
||
|
|
||
|
class Note(models.Model):
|
||
|
title = models.CharField(max_length=20)
|
||
|
content = models.CharField(max_length=1024)
|
||
|
date_created = models.DateTimeField(default=now, editable=False)
|
||
|
|
||
|
def __str__(self):
|
||
|
return self.title
|