wiki.techinc.nl/maintenance/postgres/tables-generated.sql

57 lines
1.7 KiB
MySQL
Raw Normal View History

-- This file is automatically generated using maintenance/generateSchemaSql.php.
-- Source: maintenance/tables.json
-- Do not modify this file directly.
-- See https://www.mediawiki.org/wiki/Manual:Schema_changes
CREATE TABLE site_identifiers (
si_type TEXT NOT NULL,
si_key TEXT NOT NULL,
si_site INT NOT NULL,
PRIMARY KEY(si_type, si_key)
);
CREATE INDEX site_ids_site ON site_identifiers (si_site);
CREATE INDEX site_ids_key ON site_identifiers (si_key);
CREATE TABLE updatelog (
ul_key VARCHAR(255) NOT NULL,
ul_value TEXT DEFAULT NULL,
PRIMARY KEY(ul_key)
);
CREATE TABLE actor (
actor_id BIGSERIAL NOT NULL,
actor_user INT DEFAULT NULL,
actor_name TEXT NOT NULL,
PRIMARY KEY(actor_id)
);
CREATE UNIQUE INDEX actor_user ON actor (actor_user);
CREATE UNIQUE INDEX actor_name ON actor (actor_name);
CREATE TABLE user_former_groups (
ufg_user INT DEFAULT 0 NOT NULL,
ufg_group TEXT DEFAULT '' NOT NULL,
PRIMARY KEY(ufg_user, ufg_group)
);
CREATE TABLE bot_passwords (
bp_user INT NOT NULL,
bp_app_id TEXT NOT NULL,
bp_password TEXT NOT NULL,
bp_token TEXT DEFAULT '' NOT NULL,
bp_restrictions TEXT NOT NULL,
bp_grants TEXT NOT NULL,
PRIMARY KEY(bp_user, bp_app_id)
);
CREATE TABLE comment (
comment_id BIGSERIAL NOT NULL,
comment_hash INT NOT NULL,
comment_text TEXT NOT NULL,
comment_data TEXT DEFAULT NULL,
PRIMARY KEY(comment_id)
);
CREATE INDEX comment_hash ON comment (comment_hash);
CREATE TABLE slots (
slot_revision_id BIGINT NOT NULL,
slot_role_id SMALLINT NOT NULL,
slot_content_id BIGINT NOT NULL,
slot_origin BIGINT NOT NULL,
PRIMARY KEY(slot_revision_id, slot_role_id)
);
CREATE INDEX slot_revision_origin_role ON slots (
slot_revision_id, slot_origin, slot_role_id
);