Skip to content

Instantly share code, notes, and snippets.

@i
Last active July 19, 2018 15:04
Show Gist options
  • Save i/e2bcebc26c10b3227c457044c122f43b to your computer and use it in GitHub Desktop.
Save i/e2bcebc26c10b3227c457044c122f43b to your computer and use it in GitHub Desktop.
class BaseModel(models.Model):
created_at = models.DateTimeField(auto_now_add=True)
modified_date = models.DateTimeField(auto_now=True)
class Meta:
abstract = True
# other fields / methods...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment