diff options
Diffstat (limited to 'includes/installer/PostgresUpdater.php')
-rw-r--r-- | includes/installer/PostgresUpdater.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/includes/installer/PostgresUpdater.php b/includes/installer/PostgresUpdater.php index 2db236fa7add..4fe6e1e7b235 100644 --- a/includes/installer/PostgresUpdater.php +++ b/includes/installer/PostgresUpdater.php @@ -616,6 +616,11 @@ class PostgresUpdater extends DatabaseUpdater { [ 'changeNullableField', 'recentchanges', 'rc_ip', 'NOT NULL', true ], [ 'renameIndex', 'recentchanges', 'new_name_timestamp', 'rc_new_name_timestamp', false, 'patch-recentchanges-rc_new_name_timestamp.sql' ], + [ 'changeField', 'archive', 'ar_namespace', 'INTEGER', '' ], + [ 'setDefault', 'archive', 'ar_namespace', 0 ], + [ 'setDefault', 'archive', 'ar_title', '' ], + [ 'changeField', 'archive', 'ar_comment_id', 'BIGINT', '' ], + [ 'changeField', 'archive', 'ar_actor', 'BIGINT', '' ], ]; } |