mirror of
https://github.com/neogeek23/drawshare.git
synced 2026-02-04 11:08:21 +00:00
12 lines
252 B
Python
12 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()
|