addTable method

Future<void> addTable(
  1. Table table
)

Implementation

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

  await execute(table.toSql());
}