Siobhan Tully | 4bc09f2 | 2013-04-10 21:15:21 -0400 | [diff] [blame] | 1 | import os |
2 | from django.db import models | ||||
3 | |||||
4 | class PlCoreBase(models.Model): | ||||
5 | |||||
6 | created = models.DateTimeField(auto_now_add=True) | ||||
7 | updated = models.DateTimeField(auto_now=True) | ||||
8 | |||||
9 | class Meta: | ||||
10 | abstract = True | ||||
11 | app_label = "core" | ||||
12 | |||||
13 | |||||
14 |