From ad0846d959ed7ebe330930f17c360326e78e390c Mon Sep 17 00:00:00 2001 From: Andreas Jonsson Date: Thu, 15 Aug 2024 09:21:18 +0200 Subject: [PATCH] Add missing comma characters in database schema file --- sql/WSStats.mysql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sql/WSStats.mysql b/sql/WSStats.mysql index ebaf5b5..272b088 100644 --- a/sql/WSStats.mysql +++ b/sql/WSStats.mysql @@ -2,7 +2,7 @@ CREATE TABLE /*_*/WSPS ( `id` int(11) NOT NULL PRIMARY KEY auto_increment, `page_id` int(11) NOT NULL default '0', `user_id` int(11) NOT NULL default '0', - `added` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP - `title` varchar(250) NOT NULL DEFAULT '' + `added` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, + `title` varchar(250) NOT NULL DEFAULT '', `isSpecialPage` INT(1) NOT NULL DEFAULT '0' ) /*$wgDBTableOptions*/;