pub async fn alter_table(
manager: &SchemaManager<'_>,
name: &str,
f: impl FnOnce(&mut AlterTableBuilder),
) -> Result<(), DbErr>Expand description
alter_table :name do |t| ... end — applies the column changes collected in
f (add/drop/rename), each as its own ALTER TABLE statement.