Ticket #24539: models.py

File models.py, 323 bytes (added by Evandro Myller, 10 years ago)

example models

Line 
1# base/models.py
2
3class BaseModel(m.Model):
4
5 # Time stamps
6 created = m.DateTimeField(auto_now_add=True)
7 updated = m.DateTimeField(auto_now=True)
8
9 class Meta:
10 abstract = True
11
12
13# my_app/models.py
14
15class Product(BaseModel):
16
17 reference = m.CharField(max_length=10, primary_key=True, editable=True)
Back to Top