mirror of
https://github.com/Hopiu/django-notifications.git
synced 2026-04-02 21:20:25 +00:00
11 lines
252 B
Python
11 lines
252 B
Python
from django.db.models import DateTimeField, Func, UUIDField
|
|
|
|
|
|
class RandomUUID(Func):
|
|
template = 'GEN_RANDOM_UUID()'
|
|
output_field = UUIDField()
|
|
|
|
|
|
class TransactionNow(Func):
|
|
template = 'CURRENT_TIMESTAMP'
|
|
output_field = DateTimeField()
|