mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-13 17:57:21 +00:00
a9511f4180
This adds the postgres schema to the extension Bug: T259375 Change-Id: Ib0dca100c9885b12bc53228eddac72a5fb855d26
17 lines
588 B
SQL
17 lines
588 B
SQL
-- This file is automatically generated using maintenance/generateSchemaSql.php.
|
|
-- Source: sql/tables-sharedtracking.json
|
|
-- Do not modify this file directly.
|
|
-- See https://www.mediawiki.org/wiki/Manual:Schema_changes
|
|
CREATE TABLE echo_unread_wikis (
|
|
euw_id SERIAL NOT NULL,
|
|
euw_user INT NOT NULL,
|
|
euw_wiki VARCHAR(64) NOT NULL,
|
|
euw_alerts INT NOT NULL,
|
|
euw_alerts_ts TIMESTAMPTZ NOT NULL,
|
|
euw_messages INT NOT NULL,
|
|
euw_messages_ts TIMESTAMPTZ NOT NULL,
|
|
PRIMARY KEY(euw_id)
|
|
);
|
|
|
|
CREATE UNIQUE INDEX echo_unread_wikis_user_wiki ON echo_unread_wikis (euw_user, euw_wiki);
|