You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
from django.db import models
|
|
import uuid
|
|
|
|
|
|
# Create your models here.
|
|
class BaseModel(models.Model):
|
|
uuid = models.UUIDField(default=uuid.uuid4, editable=False)
|
|
created_at = models.DateTimeField(auto_now_add=True, null=True)
|
|
class Meta:
|
|
abstract = True
|