createAllTables method

  1. @Deprecated('Use createAll() instead')
Future<void> createAllTables()

Creates all tables specified for the database, if they don't exist

Implementation

@Deprecated('Use createAll() instead')
Future<void> createAllTables() async {
  for (final table in _allSchemaEntities.whereType<TableInfo>()) {
    await createTable(table);
  }
}