UltrasonicNXT has uploaded a new change for review.

  https://gerrit.wikimedia.org/r/186005

Change subject: Make SQLite (Jenkins) happy
......................................................................

Make SQLite (Jenkins) happy

Trailing commas... And also remove a dodgy index

Change-Id: I67ca487cbe81b939576038390366618af4e3a4dd
---
M sql/comments.sql
1 file changed, 1 insertion(+), 2 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/Comments 
refs/changes/05/186005/1

diff --git a/sql/comments.sql b/sql/comments.sql
index ac7d541..e9fbaef 100644
--- a/sql/comments.sql
+++ b/sql/comments.sql
@@ -7,13 +7,12 @@
   Comment_Text text NOT NULL,
   Comment_Date datetime NOT NULL default '0000-00-00 00:00:00',
   Comment_Parent_ID int(11) NOT NULL default 0,
-  Comment_IP varchar(45) NOT NULL default '',
+  Comment_IP varchar(45) NOT NULL default ''
 ) /*$wgDBTableOptions*/;
 
 CREATE INDEX /*i*/comment_page_id_index ON /*_*/Comments (Comment_Page_ID);
 CREATE INDEX /*i*/wiki_user_id ON /*_*/Comments (Comment_user_id);
 CREATE INDEX /*i*/wiki_user_name ON /*_*/Comments (Comment_Username);
-CREATE INDEX /*i*/comment_date ON /*_*/Comments (Comment_Minus_Count);
 
 CREATE TABLE /*_*/Comments_Vote (
   Comment_Vote_ID int(11) NOT NULL default 0,

-- 
To view, visit https://gerrit.wikimedia.org/r/186005
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I67ca487cbe81b939576038390366618af4e3a4dd
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/Comments
Gerrit-Branch: master
Gerrit-Owner: UltrasonicNXT <adamr_car...@btinternet.com>

_______________________________________________
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits

Reply via email to