mirror of
https://github.com/AudebertAdrien/ft_transcendence.git
synced 2026-03-28 10:23:52 +01: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()
|