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