Skip to content

Commit

Permalink
chore: fix formatting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
esarbanis committed Mar 19, 2019
1 parent 24bef97 commit 9038c91
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/src/open_database_with_migration.dart
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ import 'package:sqflite_migration/src/migrator.dart';
/// [openDatabase] (optional) do not override this. It is used for testing
/// purposes.
///
Future<Database> openDatabaseWithMigration(
String path, MigrationConfig config, {openDatabase = openDatabase}) async {
Future<Database> openDatabaseWithMigration(String path, MigrationConfig config,
{openDatabase = openDatabase}) async {
final migrator = Migrator(config);
return await openDatabase(path,
version: config.migrationScripts.length + 1,
Expand Down

0 comments on commit 9038c91

Please sign in to comment.