Future<void> addTable(Table table) async { schema.tables[table.name] = table; tables[table.name] = DbTable(this, table); await execute(table.toSql()); }