Allow migration from sqlite-net to EF

Bonus stage
This commit is contained in:
Dean Herbert
2017-10-19 19:41:16 +09:00
parent f7d0df1743
commit 1fbbee14e4
3 changed files with 71 additions and 3 deletions

View File

@ -14,6 +14,6 @@ namespace osu.Game.Database
this.host = host;
}
public OsuDbContext GetContext() => new OsuDbContext(host.Storage.GetDatabaseConnectionString(@"client-ef"));
public OsuDbContext GetContext() => new OsuDbContext(host.Storage.GetDatabaseConnectionString(@"client"));
}
}