Rename IOqtaneDatabase interface (and related base class)

This commit is contained in:
Charles Nurse
2021-05-24 11:57:47 -07:00
parent 791e786db8
commit 4a609b444e
61 changed files with 77 additions and 72 deletions

View File

@ -8,12 +8,12 @@ namespace Oqtane.Migrations
{
public abstract class MultiDatabaseMigration : Migration
{
protected MultiDatabaseMigration(IOqtaneDatabase database)
protected MultiDatabaseMigration(IDatabase database)
{
ActiveDatabase = database;
}
protected IOqtaneDatabase ActiveDatabase { get; }
protected IDatabase ActiveDatabase { get; }
protected string RewriteName(string name)
{