From f74dcc34a1f45a942a03f900ec0f3312b364b0f8 Mon Sep 17 00:00:00 2001 From: Seb35 Date: Tue, 20 Nov 2018 15:25:09 +0100 Subject: [PATCH] SQL syntax error in MS-SQL file Bug: T209870 Change-Id: I91e4f8472832c4bb17eb1d185db1bcbde57a9287 (cherry picked from commit e1100d2d53baa71d20cc282b6dc0a950b080aaad) --- RELEASE-NOTES-1.31 | 1 + maintenance/mssql/tables.sql | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/RELEASE-NOTES-1.31 b/RELEASE-NOTES-1.31 index 20dce5a5b4..681366af9b 100644 --- a/RELEASE-NOTES-1.31 +++ b/RELEASE-NOTES-1.31 @@ -22,6 +22,7 @@ THIS IS NOT A RELEASE YET non-admins can edit the page. * (T194052) Updated wikimedia/base-convert from 1.0.1 to 2.0.0. * (T199494) Fix notices in maintenance/removeUnusuedAccounts.php +* (T209870) Fix SQL syntax error in MS-SQL initialisation file for new wikis == MediaWiki 1.31.1 == diff --git a/maintenance/mssql/tables.sql b/maintenance/mssql/tables.sql index 65ede90ea8..67746f046e 100644 --- a/maintenance/mssql/tables.sql +++ b/maintenance/mssql/tables.sql @@ -1001,7 +1001,7 @@ CREATE TABLE /*_*/recentchanges ( -- remove a warning flag on the RC list. -- A value of 1 indicates the page has been reviewed manually. -- A value of 2 indicates the page has been automatically reviewed. - rc_patrolled tinyint NOT NULL CONSTRAINT DF_rc_patrolled DEFAULT 0 + rc_patrolled tinyint NOT NULL CONSTRAINT DF_rc_patrolled DEFAULT 0, -- Recorded IP address the edit was made from, if the -- $wgPutIPinRC option is enabled. -- 2.20.1