pub const DEFAULT_SQL: ColumnMarker;Expand description
Specifies a raw SQL default expression emitted directly in DDL.
ยงExample
#[column(DEFAULT_SQL = "now()")]
created_at: String,Use DEFAULT for literal Rust values and DEFAULT_SQL when the default
must be a database expression.
See: https://www.postgresql.org/docs/current/ddl-default.html