Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F4107912
patch-drop-gu_salt.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-drop-gu_salt.sql
View Options
-- This file is automatically generated using maintenance/generateSchemaChangeSql.php.
-- Source: extensions/CentralAuth/schema/abstractSchemaChanges/patch-drop-gu_salt.json
-- Do not modify this file directly.
-- See https://www.mediawiki.org/wiki/Manual:Schema_changes
CREATE
TEMPORARY
TABLE
/*_*/
__temp__globaluser
AS
SELECT
gu_id
,
gu_name
,
gu_home_db
,
gu_email
,
gu_email_authenticated
,
gu_password
,
gu_locked
,
gu_hidden_level
,
gu_registration
,
gu_password_reset_key
,
gu_password_reset_expiration
,
gu_auth_token
,
gu_cas_token
FROM
/*_*/
globaluser
;
DROP
TABLE
/*_*/
globaluser
;
CREATE
TABLE
/*_*/
globaluser
(
gu_id
INTEGER
PRIMARY
KEY
AUTOINCREMENT
NOT
NULL
,
gu_name
BLOB
DEFAULT
NULL
,
gu_home_db
BLOB
DEFAULT
NULL
,
gu_email
BLOB
DEFAULT
NULL
,
gu_email_authenticated
BLOB
DEFAULT
NULL
,
gu_password
BLOB
DEFAULT
NULL
,
gu_locked
SMALLINT
DEFAULT
0
NOT
NULL
,
gu_hidden_level
INTEGER
DEFAULT
0
NOT
NULL
,
gu_registration
BLOB
DEFAULT
NULL
,
gu_password_reset_key
BLOB
DEFAULT
NULL
,
gu_password_reset_expiration
BLOB
DEFAULT
NULL
,
gu_auth_token
BLOB
DEFAULT
NULL
,
gu_cas_token
INTEGER
UNSIGNED
DEFAULT
1
NOT
NULL
);
INSERT
INTO
/*_*/
globaluser
(
gu_id
,
gu_name
,
gu_home_db
,
gu_email
,
gu_email_authenticated
,
gu_password
,
gu_locked
,
gu_hidden_level
,
gu_registration
,
gu_password_reset_key
,
gu_password_reset_expiration
,
gu_auth_token
,
gu_cas_token
)
SELECT
gu_id
,
gu_name
,
gu_home_db
,
gu_email
,
gu_email_authenticated
,
gu_password
,
gu_locked
,
gu_hidden_level
,
gu_registration
,
gu_password_reset_key
,
gu_password_reset_expiration
,
gu_auth_token
,
gu_cas_token
FROM
/*_*/
__temp__globaluser
;
DROP
TABLE
/*_*/
__temp__globaluser
;
CREATE
UNIQUE
INDEX
gu_name
ON
/*_*/
globaluser
(
gu_name
);
CREATE
INDEX
gu_email
ON
/*_*/
globaluser
(
gu_email
);
CREATE
INDEX
gu_locked
ON
/*_*/
globaluser
(
gu_name
,
gu_locked
);
CREATE
INDEX
gu_hidden_level
ON
/*_*/
globaluser
(
gu_name
,
gu_hidden_level
);
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Tue, Aug 18, 20:15 (2 w, 2 d ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
42/92/721951c779efd9cd64baf752303c
Default Alt Text
patch-drop-gu_salt.sql (1 KB)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment