mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-24 07:54:13 +00:00
Merge "Don't use '#' for comments in .sql files"
This commit is contained in:
commit
e22fcaf65d
|
@ -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*/;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue