@ -68,7 +68,7 @@ namespace NzbDrone.Core.Datastore
case MigrationType . Main :
case MigrationType . Main :
{
{
connectionInfo = _connectionStringFactory . MainDbConnection ;
connectionInfo = _connectionStringFactory . MainDbConnection ;
CreateMain ( connectionInfo . ConnectionString , migrationContext );
CreateMain ( connectionInfo . ConnectionString , migrationContext , connectionInfo . DatabaseType );
break ;
break ;
}
}
@ -76,7 +76,7 @@ namespace NzbDrone.Core.Datastore
case MigrationType . Log :
case MigrationType . Log :
{
{
connectionInfo = _connectionStringFactory . LogDbConnection ;
connectionInfo = _connectionStringFactory . LogDbConnection ;
CreateLog ( connectionInfo . ConnectionString , migrationContext );
CreateLog ( connectionInfo . ConnectionString , migrationContext , connectionInfo . DatabaseType );
break ;
break ;
}
}
@ -108,12 +108,12 @@ namespace NzbDrone.Core.Datastore
return db ;
return db ;
}
}
private void CreateMain ( string connectionString , MigrationContext migrationContext )
private void CreateMain ( string connectionString , MigrationContext migrationContext , DatabaseType databaseType )
{
{
try
try
{
{
_restoreDatabaseService . Restore ( ) ;
_restoreDatabaseService . Restore ( ) ;
_migrationController . Migrate ( connectionString , migrationContext );
_migrationController . Migrate ( connectionString , migrationContext , databaseType );
}
}
catch ( SQLiteException e )
catch ( SQLiteException e )
{
{
@ -140,7 +140,7 @@ namespace NzbDrone.Core.Datastore
try
try
{
{
_migrationController . Migrate ( connectionString , migrationContext );
_migrationController . Migrate ( connectionString , migrationContext , databaseType );
return ;
return ;
}
}
catch ( Exception ex )
catch ( Exception ex )
@ -165,11 +165,11 @@ namespace NzbDrone.Core.Datastore
}
}
}
}
private void CreateLog ( string connectionString , MigrationContext migrationContext )
private void CreateLog ( string connectionString , MigrationContext migrationContext , DatabaseType databaseType )
{
{
try
try
{
{
_migrationController . Migrate ( connectionString , migrationContext );
_migrationController . Migrate ( connectionString , migrationContext , databaseType );
}
}
catch ( SQLiteException e )
catch ( SQLiteException e )
{
{
@ -189,7 +189,7 @@ namespace NzbDrone.Core.Datastore
Logger . Error ( "Unable to recreate logging database automatically. It will need to be removed manually." ) ;
Logger . Error ( "Unable to recreate logging database automatically. It will need to be removed manually." ) ;
}
}
_migrationController . Migrate ( connectionString , migrationContext );
_migrationController . Migrate ( connectionString , migrationContext , databaseType );
}
}
catch ( Exception e )
catch ( Exception e )
{
{