models.py 447 B

12345678910111213
  1. from django.db import models
  2. # Create your models here.
  3. class RestaurantLocation(models.Model):
  4. name = models.CharField(max_length=120)
  5. location = models.CharField(max_length=120, null=True, blank=True)
  6. category = models.CharField(max_length=120, null=True, blank=True)
  7. timestamp = models.DateTimeField(auto_now_add=True)
  8. updated = models.DateTimeField(auto_now=True)
  9. def __str__(self):
  10. return self.name