void addTable(SchemaTable table)

Source

void addTable(SchemaTable table) {
  if (this[table.name] != null) {
    throw new SchemaException("Table ${table.name} already exists.");
  }

  tables.add(table);
}