pub async fn create_table(
manager: &SchemaManager<'_>,
name: &str,
f: impl FnOnce(&mut TableBuilder),
) -> Result<(), DbErr>Expand description
create_table :name do |t| ... end — creates a table with an implicit
auto-incrementing id primary key plus the columns added in f.