You've already forked Travel-Agent
feat: Added date joined to user
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
__all__ = ("utcnow",)
|
||||
|
||||
from sqlalchemy.ext.compiler import compiles
|
||||
from sqlalchemy.sql import expression
|
||||
from sqlalchemy.types import DateTime
|
||||
|
||||
|
||||
class utcnow(expression.FunctionElement): # noqa: N801
|
||||
type = DateTime() # noqa: A003
|
||||
inherit_cache = True
|
||||
|
||||
|
||||
@compiles(utcnow, "postgresql")
|
||||
def pg_utcnow(element, compiler, **kw):
|
||||
return "TIMEZONE('utc', CURRENT_TIMESTAMP)"
|
||||
Reference in New Issue
Block a user