Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F1427620
patch-gp_user-unsigned.sql
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
511 B
Referenced Files
None
Subscribers
None
patch-gp_user-unsigned.sql
View Options
CREATE
TABLE
/*_*/
global_preferences_tmp
(
gp_user
INTEGER
UNSIGNED
NOT
NULL
,
gp_property
BLOB
NOT
NULL
,
gp_value
BLOB
DEFAULT
NULL
,
PRIMARY
KEY
(
gp_user
,
gp_property
)
);
INSERT
INTO
global_preferences_tmp
(
gp_user
,
gp_property
,
gp_value
)
SELECT
gp_user
,
gp_property
,
gp_value
FROM
/*_*/
global_preferences
;
DROP
TABLE
/*_*/
global_preferences
;
ALTER
TABLE
/*_*/
global_preferences_tmp
RENAME
TO
/*_*/
global_preferences
;
CREATE
INDEX
global_preferences_property
ON
/*_*/
global_preferences
(
gp_property
);
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sat, May 16, 14:52 (1 d, 2 h)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
f6/f6/466b46f47e7521eada0b2202cf6b
Default Alt Text
patch-gp_user-unsigned.sql (511 B)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment