mirror of
https://github.com/kennethreitz/heroku-buildpack-python.git
synced 2026-06-05 23:10:16 +00:00
6 lines
154 B
Python
6 lines
154 B
Python
from django.db import models
|
|
|
|
# Create your models here.
|
|
class Greeting(models.Model):
|
|
when = models.DateTimeField('date created', auto_now_add=True)
|