drop unused fields rc_moved_to_ns/rc_moved_to_title
Follow-up I68e8c0bb23f185c0f996a8905f6d437db3080aa1 Deleting those fields also from tables.sql definition for mssql, oracle and postgres Bug: 34960 Change-Id: I1867536c9161abed0b23428d3c840d16a05cba56
This commit is contained in:
parent
50af25f5b3
commit
3d8bfee35b
3 changed files with 0 additions and 6 deletions
|
|
@ -505,8 +505,6 @@ CREATE TABLE /*$wgDBprefix*/recentchanges (
|
|||
rc_this_oldid INT DEFAULT 0,
|
||||
rc_last_oldid INT DEFAULT 0,
|
||||
rc_type tinyint DEFAULT 0,
|
||||
rc_moved_to_ns BIT DEFAULT 0,
|
||||
rc_moved_to_title NVARCHAR(255) DEFAULT '',
|
||||
rc_patrolled BIT DEFAULT 0,
|
||||
rc_ip NCHAR(40) DEFAULT '',
|
||||
rc_old_len INT DEFAULT 0,
|
||||
|
|
|
|||
|
|
@ -409,8 +409,6 @@ CREATE TABLE &mw_prefix.recentchanges (
|
|||
rc_this_oldid NUMBER DEFAULT 0 NOT NULL,
|
||||
rc_last_oldid NUMBER DEFAULT 0 NOT NULL,
|
||||
rc_type CHAR(1) DEFAULT '0' NOT NULL,
|
||||
rc_moved_to_ns NUMBER DEFAULT 0 NOT NULL,
|
||||
rc_moved_to_title VARCHAR2(255),
|
||||
rc_patrolled CHAR(1) DEFAULT '0' NOT NULL,
|
||||
rc_ip VARCHAR2(15),
|
||||
rc_old_len NUMBER,
|
||||
|
|
|
|||
|
|
@ -405,8 +405,6 @@ CREATE TABLE recentchanges (
|
|||
rc_this_oldid INTEGER NOT NULL,
|
||||
rc_last_oldid INTEGER NOT NULL,
|
||||
rc_type SMALLINT NOT NULL DEFAULT 0,
|
||||
rc_moved_to_ns SMALLINT,
|
||||
rc_moved_to_title TEXT,
|
||||
rc_patrolled SMALLINT NOT NULL DEFAULT 0,
|
||||
rc_ip CIDR,
|
||||
rc_old_len INTEGER,
|
||||
|
|
|
|||
Loading…
Reference in a new issue