SQL syntax error in MS-SQL file
authorSeb35 <seb35@seb35.fr>
Tue, 20 Nov 2018 14:25:09 +0000 (15:25 +0100)
committerSeb35 <seb35@seb35.fr>
Thu, 22 Nov 2018 00:26:49 +0000 (01:26 +0100)
Bug: T209870
Change-Id: I91e4f8472832c4bb17eb1d185db1bcbde57a9287
(cherry picked from commit e1100d2d53baa71d20cc282b6dc0a950b080aaad)

RELEASE-NOTES-1.31
maintenance/mssql/tables.sql

index 20dce5a..681366a 100644 (file)
@@ -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 ==
 
index 65ede90..67746f0 100644 (file)
@@ -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.