mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-16 20:22:53 -06:00
10 lines
218 B
Python
10 lines
218 B
Python
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
|