mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-27 04:18:55 +00:00
Compare commits
17 commits
7714a552b3
...
d2202b7747
Author | SHA1 | Date | |
---|---|---|---|
|
d2202b7747 | ||
|
07b63fc6a8 | ||
|
0f71afae61 | ||
|
59ef2c8fce | ||
|
4b420e2958 | ||
|
1d34b4f06a | ||
|
38ee655b2a | ||
|
e4cd3ac744 | ||
|
4f89e2b97d | ||
|
53360e0c17 | ||
|
83f1ed8de4 | ||
|
98c6a88438 | ||
|
9cccf26311 | ||
|
43833b40bb | ||
|
30ee379576 | ||
|
081f2391cb | ||
|
0b242b9608 |
4 changed files with 85 additions and 60 deletions
|
@ -575,7 +575,7 @@ class migrator
|
|||
$state['migration_data_state']['_total_time'] : 0.0;
|
||||
$elapsed_time = microtime(true);
|
||||
|
||||
$steps = array_merge($this->helper->reverse_update_data($migration->update_data()), $migration->revert_data());
|
||||
$steps = $migration->revert_data() ?: $this->helper->reverse_update_data($migration->update_data());
|
||||
$result = $this->process_data_step($steps, $state['migration_data_state']);
|
||||
|
||||
$elapsed_time = microtime(true) - $elapsed_time;
|
||||
|
|
|
@ -300,34 +300,10 @@ class doctrine implements tools_interface
|
|||
*/
|
||||
public function sql_column_remove(string $table_name, string $column_name)
|
||||
{
|
||||
// Check if this column is part of a primary key. If yes, remove the primary key.
|
||||
$primary_key_indexes = $this->get_filtered_index_list($table_name, false);
|
||||
|
||||
$primary_key_indexes = array_filter($primary_key_indexes, function($index) use ($column_name) {
|
||||
$index_columns = array_map('strtolower', $index->getUnquotedColumns());
|
||||
return in_array($column_name, $index_columns, true) && $index->isPrimary();
|
||||
});
|
||||
|
||||
if (count($primary_key_indexes))
|
||||
$return = $this->schema_drop_primary_key($table_name, $column_name);
|
||||
if ($return !== true)
|
||||
{
|
||||
// For PostgreSQL, drop primary index first to avoid "Dependent objects still exist" error
|
||||
if (stripos($this->get_schema_manager()->getDatabasePlatform()->getname(), 'postgresql') !== false)
|
||||
{
|
||||
$this->get_schema_manager()->dropIndex('"primary"', $table_name);
|
||||
}
|
||||
|
||||
$ret = $this->alter_schema(
|
||||
function (Schema $schema) use ($table_name, $column_name): void
|
||||
{
|
||||
$table = $schema->getTable($table_name);
|
||||
$table->dropPrimaryKey();
|
||||
}
|
||||
);
|
||||
|
||||
if ($ret !== true)
|
||||
{
|
||||
return $ret;
|
||||
}
|
||||
return $return;
|
||||
}
|
||||
|
||||
return $this->alter_schema(
|
||||
|
@ -835,6 +811,8 @@ class doctrine implements tools_interface
|
|||
*/
|
||||
protected function schema_column_remove(Schema $schema, string $table_name, string $column_name, bool $safe_check = false): void
|
||||
{
|
||||
$this->schema_drop_primary_key($table_name, $column_name);
|
||||
|
||||
$this->alter_table(
|
||||
$schema,
|
||||
$table_name,
|
||||
|
@ -1005,6 +983,47 @@ class doctrine implements tools_interface
|
|||
$table->setPrimaryKey($columns);
|
||||
}
|
||||
|
||||
/**
|
||||
* Removes primary key from a table
|
||||
*
|
||||
* @param string $table_name
|
||||
* @param string $column_name
|
||||
*
|
||||
* @return bool|string[]
|
||||
*
|
||||
* @throws SchemaException
|
||||
*/
|
||||
protected function schema_drop_primary_key(string $table_name, string $column_name): array|bool
|
||||
{
|
||||
// Check if this column is part of a primary key. If yes, remove the primary key.
|
||||
$primary_key_indexes = $this->get_filtered_index_list($table_name, false);
|
||||
|
||||
$primary_key_indexes = array_filter($primary_key_indexes, function($index) use ($column_name) {
|
||||
$index_columns = array_map('strtolower', $index->getUnquotedColumns());
|
||||
return in_array($column_name, $index_columns, true) && $index->isPrimary();
|
||||
});
|
||||
|
||||
$return = true;
|
||||
if (count($primary_key_indexes))
|
||||
{
|
||||
// For PostgreSQL, drop primary index first to avoid "Dependent objects still exist" error
|
||||
if (stripos($this->get_schema_manager()->getDatabasePlatform()->getname(), 'postgresql') !== false)
|
||||
{
|
||||
$this->get_schema_manager()->dropIndex('"primary"', $table_name);
|
||||
}
|
||||
|
||||
$return = $this->alter_schema(
|
||||
function (Schema $schema) use ($table_name, $column_name): void
|
||||
{
|
||||
$table = $schema->getTable($table_name);
|
||||
$table->dropPrimaryKey();
|
||||
}
|
||||
);
|
||||
}
|
||||
|
||||
return $return;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recreate an index of a table
|
||||
*
|
||||
|
@ -1016,11 +1035,13 @@ class doctrine implements tools_interface
|
|||
*/
|
||||
protected function recreate_index(Table $table, Index $index, array $new_columns): void
|
||||
{
|
||||
if ($index->isPrimary())
|
||||
if (!empty($new_columns))
|
||||
{
|
||||
if ($table->hasPrimaryKey() && $index->isPrimary())
|
||||
{
|
||||
$table->dropPrimaryKey();
|
||||
}
|
||||
else
|
||||
else if ($table->hasIndex($index->getName()))
|
||||
{
|
||||
$table->dropIndex($index->getName());
|
||||
}
|
||||
|
@ -1053,6 +1074,7 @@ class doctrine implements tools_interface
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @param Sequence $sequence
|
||||
|
|
|
@ -134,7 +134,7 @@ abstract class phpbb_migration_test_base extends phpbb_database_test_case
|
|||
|
||||
protected function revert_migration()
|
||||
{
|
||||
while ($this->migrator->migration_state($this->migration_class))
|
||||
while ($this->migrator->migration_state($this->migration_class) !== false)
|
||||
{
|
||||
try
|
||||
{
|
||||
|
|
|
@ -69,5 +69,8 @@ class phpbb_migrations_remove_jabber_migration_test extends phpbb_migration_test
|
|||
$this->assertTrue($this->tools['permission']->exists('a_jabber'));
|
||||
$this->assertTrue($this->tools['permission']->exists('u_sendim'));
|
||||
$this->assertTrue($this->tools['module']->exists('acp', 'ACP_CLIENT_COMMUNICATION', 'ACP_JABBER_SETTINGS'));
|
||||
|
||||
// Apply migration back
|
||||
$this->apply_migration();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue