1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-29 04:50:51 +02:00

[feature/migrations] Move migrator to service container

Version numbers

3.1 updates

Restore database_update.php file to what it was in develop

Get first forum to place global announcements in

PHPBB3-9737
This commit is contained in:
Nathan Guse
2013-01-08 22:07:26 -06:00
parent 41de95bc11
commit 6c44dadecb
51 changed files with 2252 additions and 106 deletions

View File

@@ -1258,7 +1258,7 @@ function get_schema_struct()
),
);
$schema_data['phpbb_moderator_cache'] = array(
$schema_data['phpbb_migrations'] = array(
'COLUMNS' => array(
'forum_id' => array('UINT', 0),
'user_id' => array('UINT', 0),
@@ -1273,6 +1273,18 @@ function get_schema_struct()
),
);
$schema_data['phpbb_moderator_cache'] = array(
'COLUMNS' => array(
'migration_name' => array('VCHAR', ''),
'migration_schema_done' => array('BOOL', 0),
'migration_data_done' => array('BOOL', 0),
'migration_data_state' => array('TEXT', ''),
'migration_start_time' => array('TIMESTAMP', 0),
'migration_end_time' => array('TIMESTAMP', 0),
),
'PRIMARY_KEY' => 'migration_name',
);
$schema_data['phpbb_modules'] = array(
'COLUMNS' => array(
'module_id' => array('UINT', NULL, 'auto_increment'),