Advertisement
Alaricy

Untitled

Feb 13th, 2022
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. class Event(models.Model):
  2. name = models.CharField(max_length=200)
  3. start_at = .DateTimeField(auto_now_add = True)
  4. description = models.TextField()
  5. contact = models.EmailField()
  6. author = models.ForeignKey(User, on_delete = models.CASCADE, related_name = 'events')
  7. location = models.CharFiekd(max_length=400)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement