diff options
| -rw-r--r-- | phpBB/phpbb/db/migrator.php | 5 | 
1 files changed, 4 insertions, 1 deletions
diff --git a/phpBB/phpbb/db/migrator.php b/phpBB/phpbb/db/migrator.php index edc132e546..4c4c0a8672 100644 --- a/phpBB/phpbb/db/migrator.php +++ b/phpBB/phpbb/db/migrator.php @@ -383,7 +383,10 @@ class migrator  			}  			catch (\phpbb\db\migration\exception $e)  			{ -				// Revert the schema changes +				// Reset data state and revert the schema changes +				$state['migration_data_state'] = ''; +				$this->set_migration_state($name, $state); +  				$this->revert_do($name);  				throw $e;  | 
