Guest User

Untitled

a guest
Jul 19th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. class BaseModel(models.Model):
  2. created_at = models.DateTimeField(auto_now_add=True)
  3. modified_date = models.DateTimeField(auto_now=True)
  4.  
  5. class Meta:
  6. abstract = True
  7.  
  8. # other fields / methods...
Add Comment
Please, Sign In to add comment