1
0
Fork 0
This repository has been archived on 2025-03-30. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
csb-project-1/notes/models.py

7 lines
243 B
Python

from django.db import models
from django.contrib.auth.models import User
class Note(models.Model):
owner = models.ForeignKey(User, on_delete=models.CASCADE)
body = models.TextField()
time = models.DateTimeField(auto_now_add=True)