X-Git-Url: https://git.cyclocoop.org/%7B%24admin_url%7Dmembres/modifier.php?a=blobdiff_plain;f=maintenance%2Fmssql%2Ftables.sql;h=65ede90ea8d6c4476e41526147c6163b243e9612;hb=bb8c060128a79532e1b6885fb3ebd6174d3f4d4d;hp=ddc5517734859d04deffd3978fa6d0a8fc6ec2f5;hpb=90b02397d0963970a00d4be798fab76218a38a87;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/mssql/tables.sql b/maintenance/mssql/tables.sql index ddc5517734..65ede90ea8 100644 --- a/maintenance/mssql/tables.sql +++ b/maintenance/mssql/tables.sql @@ -270,7 +270,6 @@ CREATE TABLE /*_*/archive ( ar_id int NOT NULL PRIMARY KEY IDENTITY, ar_namespace SMALLINT NOT NULL DEFAULT 0, ar_title NVARCHAR(255) NOT NULL DEFAULT '', - ar_text NVARCHAR(MAX) NOT NULL, ar_comment NVARCHAR(255) NOT NULL CONSTRAINT DF_ar_comment DEFAULT '', ar_comment_id bigint unsigned NOT NULL CONSTRAINT DF_ar_comment_id DEFAULT 0 CONSTRAINT FK_ar_comment_id FOREIGN KEY REFERENCES /*_*/comment(comment_id), ar_user INT CONSTRAINT ar_user__user_id__fk FOREIGN KEY REFERENCES /*_*/mwuser(user_id), @@ -278,9 +277,8 @@ CREATE TABLE /*_*/archive ( ar_actor bigint unsigned NOT NULL CONSTRAINT DF_ar_actor DEFAULT 0, ar_timestamp varchar(14) NOT NULL default '', ar_minor_edit BIT NOT NULL DEFAULT 0, - ar_flags NVARCHAR(255) NOT NULL, - ar_rev_id INT NULL, -- NOT a FK, the row gets deleted from revision and moved here - ar_text_id INT CONSTRAINT ar_text_id__old_id__fk FOREIGN KEY REFERENCES /*_*/text(old_id) ON DELETE CASCADE, + ar_rev_id INT NOT NULL, -- NOT a FK, the row gets deleted from revision and moved here + ar_text_id INT NOT NULL CONSTRAINT DF_ar_text_id DEFAULT 0 CONSTRAINT ar_text_id__old_id__fk FOREIGN KEY REFERENCES /*_*/text(old_id) ON DELETE CASCADE, ar_deleted TINYINT NOT NULL DEFAULT 0, ar_len INT, ar_page_id INT NULL, -- NOT a FK, the row gets deleted from page and moved here @@ -591,26 +589,22 @@ CREATE TABLE /*_*/site_stats ( ss_row_id int NOT NULL CONSTRAINT /*i*/ss_row_id PRIMARY KEY, -- Total number of edits performed. - ss_total_edits bigint default 0, + ss_total_edits bigint default NULL, - -- An approximate count of pages matching the following criteria: - -- * in namespace 0 - -- * not a redirect - -- * contains the text '[[' - -- See Article::isCountable() in includes/Article.php - ss_good_articles bigint default 0, + -- See SiteStatsInit::articles(). + ss_good_articles bigint default NULL, - -- Total pages, theoretically equal to SELECT COUNT(*) FROM page; except faster - ss_total_pages bigint default '-1', + -- Total pages, theoretically equal to SELECT COUNT(*) FROM page. + ss_total_pages bigint default NULL, - -- Number of users, theoretically equal to SELECT COUNT(*) FROM user; - ss_users bigint default '-1', + -- Number of users, theoretically equal to SELECT COUNT(*) FROM user. + ss_users bigint default NULL, - -- Number of users that still edit - ss_active_users bigint default '-1', + -- Number of users that still edit. + ss_active_users bigint default NULL, - -- Number of images, equivalent to SELECT COUNT(*) FROM image - ss_images int default 0 + -- Number of images, equivalent to SELECT COUNT(*) FROM image. + ss_images bigint default NULL ); @@ -740,6 +734,7 @@ CREATE TABLE /*_*/image ( -- Description field as entered by the uploader. -- This is displayed in image upload history and logs. img_description nvarchar(255) NOT NULL CONSTRAINT DF_img_description DEFAULT '', + img_description_id bigint NOT NULL CONSTRAINT DF_img_description_id DEFAULT 0 CONSTRAINT FK_img_description_id FOREIGN KEY REFERENCES /*_*/comment(comment_id), -- user_id and user_name of uploader. img_user int REFERENCES /*_*/mwuser(user_id) ON DELETE SET NULL, @@ -1004,8 +999,9 @@ CREATE TABLE /*_*/recentchanges ( -- If the Recent Changes Patrol option is enabled, -- users may mark edits as having been reviewed to -- remove a warning flag on the RC list. - -- A value of 1 indicates the page has been reviewed. - rc_patrolled bit NOT NULL default 0, + -- A value of 1 indicates the page has been reviewed manually. + -- A value of 2 indicates the page has been automatically reviewed. + rc_patrolled tinyint NOT NULL CONSTRAINT DF_rc_patrolled DEFAULT 0 -- Recorded IP address the edit was made from, if the -- $wgPutIPinRC option is enabled. @@ -1030,7 +1026,7 @@ CREATE TABLE /*_*/recentchanges ( ); CREATE INDEX /*i*/rc_timestamp ON /*_*/recentchanges (rc_timestamp); -CREATE INDEX /*i*/rc_namespace_title ON /*_*/recentchanges (rc_namespace, rc_title); +CREATE INDEX /*i*/rc_namespace_title_timestamp ON /*_*/recentchanges (rc_namespace, rc_title, rc_timestamp); CREATE INDEX /*i*/rc_cur_id ON /*_*/recentchanges (rc_cur_id); CREATE INDEX /*i*/new_name_timestamp ON /*_*/recentchanges (rc_new,rc_namespace,rc_timestamp); CREATE INDEX /*i*/rc_ip ON /*_*/recentchanges (rc_ip);