(col: T)
| 155 | } |
| 156 | |
| 157 | pub fn small_integer_null<T: IntoIden>(col: T) -> ColumnDef { |
| 158 | ColumnDef::new(col).small_integer().null().take() |
| 159 | } |
| 160 | |
| 161 | pub fn small_integer_uniq<T: IntoIden>(col: T) -> ColumnDef { |
| 162 | small_integer(col).unique_key().take() |