Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F4118914
patch-change_tag-ct_rc_id.sql
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
patch-change_tag-ct_rc_id.sql
View Options
-- This file is automatically generated using maintenance/generateSchemaChangeSql.php.
-- Source: maintenance/abstractSchemaChanges/patch-change_tag-ct_rc_id.json
-- Do not modify this file directly.
-- See https://www.mediawiki.org/wiki/Manual:Schema_changes
CREATE
TEMPORARY
TABLE
/*_*/
__temp__change_tag
AS
SELECT
ct_id
,
ct_rc_id
,
ct_log_id
,
ct_rev_id
,
ct_params
,
ct_tag_id
FROM
/*_*/
change_tag
;
DROP
TABLE
/*_*/
change_tag
;
CREATE
TABLE
/*_*/
change_tag
(
ct_id
INTEGER
PRIMARY
KEY
AUTOINCREMENT
NOT
NULL
,
ct_rc_id
BIGINT
UNSIGNED
DEFAULT
NULL
,
ct_log_id
INTEGER
UNSIGNED
DEFAULT
NULL
,
ct_rev_id
INTEGER
UNSIGNED
DEFAULT
NULL
,
ct_params
BLOB
DEFAULT
NULL
,
ct_tag_id
INTEGER
UNSIGNED
NOT
NULL
);
INSERT
INTO
/*_*/
change_tag
(
ct_id
,
ct_rc_id
,
ct_log_id
,
ct_rev_id
,
ct_params
,
ct_tag_id
)
SELECT
ct_id
,
ct_rc_id
,
ct_log_id
,
ct_rev_id
,
ct_params
,
ct_tag_id
FROM
/*_*/
__temp__change_tag
;
DROP
TABLE
/*_*/
__temp__change_tag
;
CREATE
UNIQUE
INDEX
ct_rc_tag_id
ON
/*_*/
change_tag
(
ct_rc_id
,
ct_tag_id
);
CREATE
UNIQUE
INDEX
ct_log_tag_id
ON
/*_*/
change_tag
(
ct_log_id
,
ct_tag_id
);
CREATE
UNIQUE
INDEX
ct_rev_tag_id
ON
/*_*/
change_tag
(
ct_rev_id
,
ct_tag_id
);
CREATE
INDEX
ct_tag_id_id
ON
/*_*/
change_tag
(
ct_tag_id
,
ct_rc_id
,
ct_rev_id
,
ct_log_id
);
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Wed, Aug 19, 03:03 (2 w, 1 d ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
f7/31/b10a931e623b05605cc69772e4f9
Default Alt Text
patch-change_tag-ct_rc_id.sql (1 KB)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment