now function
Calls the NOW()
function in postgres.
Implementation
Expression<PgDateTime> now() {
return FunctionCallExpression('NOW', [])
.dartCast(customType: PgTypes.timestampWithTimezone);
}
Calls the NOW()
function in postgres.
Expression<PgDateTime> now() {
return FunctionCallExpression('NOW', [])
.dartCast(customType: PgTypes.timestampWithTimezone);
}