createTableWithForeignKeys method

  1. @Deprecated('Use createTable(..., foreignKeys: [...]) instead.')
void createTableWithForeignKeys(
  1. String table,
  2. List<String> columns,
  3. List<ForeignKeyDefinition> foreignKeys
)

Implementation

@Deprecated('Use createTable(..., foreignKeys: [...]) instead.')
void createTableWithForeignKeys(
  String table,
  List<String> columns,
  List<ForeignKeyDefinition> foreignKeys,
) {
  createTable(table, columns, foreignKeys: foreignKeys);
}