mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
12 lines
259 B
Python
12 lines
259 B
Python
from __future__ import unicode_literals
|
|
|
|
from django.db import models
|
|
|
|
|
|
class CreatedUpdatedModel(models.Model):
|
|
created = models.DateField(auto_now_add=True)
|
|
last_updated = models.DateTimeField(auto_now=True)
|
|
|
|
class Meta:
|
|
abstract = True
|