(col: T)
| 143 | } |
| 144 | |
| 145 | pub fn tiny_integer_null<T: IntoIden>(col: T) -> ColumnDef { |
| 146 | ColumnDef::new(col).tiny_integer().null().take() |
| 147 | } |
| 148 | |
| 149 | pub fn tiny_integer_uniq<T: IntoIden>(col: T) -> ColumnDef { |
| 150 | tiny_integer(col).unique_key().take() |