This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2018-11-14 18:14:14 +00:00
|
|
|
"""Generic models"""
|
|
|
|
from django.db import models
|
|
|
|
|
|
|
|
|
|
|
|
class CreatedUpdatedModel(models.Model):
|
|
|
|
"""Base Abstract Model to save created and update"""
|
2019-12-31 11:51:16 +00:00
|
|
|
|
2019-02-21 15:06:57 +00:00
|
|
|
created = models.DateTimeField(auto_now_add=True)
|
2018-11-14 18:14:14 +00:00
|
|
|
last_updated = models.DateTimeField(auto_now=True)
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
abstract = True
|