10 lines
264 B
Python
10 lines
264 B
Python
from django.db import models
|
|
|
|
|
|
class BaseModel(models.Model):
|
|
created_at = models.DateTimeField(auto_now_add=True)
|
|
updated_at = models.DateTimeField(auto_now=True)
|
|
is_deleted = models.BooleanField(default=False)
|
|
|
|
class Meta:
|
|
abstract = True |