Merge "Don't use '#' for comments in .sql files"

This commit is contained in:
jenkins-bot 2022-04-12 12:31:24 +00:00 committed by Gerrit Code Review
commit e22fcaf65d

View file

@ -1,17 +1,17 @@
CREATE TABLE /*_*/echo_unread_wikis ( CREATE TABLE /*_*/echo_unread_wikis (
# Primary key -- Primary key
euw_id INT UNSIGNED NOT NULL PRIMARY KEY AUTO_INCREMENT, euw_id INT UNSIGNED NOT NULL PRIMARY KEY AUTO_INCREMENT,
# Global user id -- Global user id
euw_user INT UNSIGNED NOT NULL, euw_user INT UNSIGNED NOT NULL,
# Name of wiki -- Name of wiki
euw_wiki VARCHAR(64) NOT NULL, euw_wiki VARCHAR(64) NOT NULL,
# unread alerts count on that wiki -- unread alerts count on that wiki
euw_alerts INT UNSIGNED NOT NULL, euw_alerts INT UNSIGNED NOT NULL,
# Timestamp of the most recent unread alert -- Timestamp of the most recent unread alert
euw_alerts_ts BINARY(14) NOT NULL, euw_alerts_ts BINARY(14) NOT NULL,
# unread messages count on that wiki -- unread messages count on that wiki
euw_messages INT UNSIGNED NOT NULL, euw_messages INT UNSIGNED NOT NULL,
# Timestamp of the most recent unread message -- Timestamp of the most recent unread message
euw_messages_ts BINARY(14) NOT NULL euw_messages_ts BINARY(14) NOT NULL
) /*$wgDBTableOptions*/; ) /*$wgDBTableOptions*/;