mediawiki-extensions-Discus.../sql/mysql/discussiontools_persistent.sql
Bartosz Dziewoński 0024a94ba7 Store permalink data, implement Special:FindComment/GoToComment
Depends-On: I90656cc74bb1cb1f2f3c82ad51cfb164cb8a4a4b
Bug: T296801
Change-Id: I84187b303aa10a242c872088403f808df3d1f940
2022-08-11 01:19:47 +02:00

50 lines
1.7 KiB
SQL

-- This file is automatically generated using maintenance/generateSchemaSql.php.
-- Source: sql/discussiontools_persistent.json
-- Do not modify this file directly.
-- See https://www.mediawiki.org/wiki/Manual:Schema_changes
CREATE TABLE /*_*/discussiontools_items (
it_id INT UNSIGNED AUTO_INCREMENT NOT NULL,
it_itemname VARBINARY(255) NOT NULL,
it_timestamp BINARY(14) DEFAULT NULL,
it_actor BIGINT UNSIGNED DEFAULT NULL,
UNIQUE INDEX it_itemname (it_itemname),
PRIMARY KEY(it_id)
) /*$wgDBTableOptions*/;
CREATE TABLE /*_*/discussiontools_item_ids (
itid_id INT UNSIGNED AUTO_INCREMENT NOT NULL,
itid_itemid VARBINARY(255) NOT NULL,
UNIQUE INDEX itid_itemid (itid_itemid),
PRIMARY KEY(itid_id)
) /*$wgDBTableOptions*/;
CREATE TABLE /*_*/discussiontools_item_pages (
itp_id INT UNSIGNED AUTO_INCREMENT NOT NULL,
itp_items_id INT UNSIGNED NOT NULL,
itp_page_id BIGINT UNSIGNED NOT NULL,
itp_oldest_revision_id BIGINT UNSIGNED NOT NULL,
itp_newest_revision_id BIGINT UNSIGNED NOT NULL,
UNIQUE INDEX itp_items_id_page_id (itp_items_id, itp_page_id),
UNIQUE INDEX itp_items_id_newest_revision_id (
itp_items_id, itp_newest_revision_id
),
PRIMARY KEY(itp_id)
) /*$wgDBTableOptions*/;
CREATE TABLE /*_*/discussiontools_item_revisions (
itr_id INT UNSIGNED AUTO_INCREMENT NOT NULL,
itr_itemid_id INT NOT NULL,
itr_revision_id BIGINT UNSIGNED NOT NULL,
itr_items_id INT NOT NULL,
itr_parent_id INT DEFAULT NULL,
itr_transcludedfrom BIGINT UNSIGNED DEFAULT NULL,
itr_level TINYINT NOT NULL,
itr_headinglevel TINYINT DEFAULT NULL,
INDEX itr_revision_id (itr_revision_id),
UNIQUE INDEX itr_itemid_id_revision_id (itr_itemid_id, itr_revision_id),
PRIMARY KEY(itr_id)
) /*$wgDBTableOptions*/;