(col: T)
| 331 | } |
| 332 | |
| 333 | pub fn timestamp<T: IntoIden>(col: T) -> ColumnDef { |
| 334 | ColumnDef::new(col).timestamp().not_null().take() |
| 335 | } |
| 336 | |
| 337 | pub fn timestamp_null<T: IntoIden>(col: T) -> ColumnDef { |
| 338 | ColumnDef::new(col).timestamp().null().take() |
no test coverage detected