Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F2751569
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
Fri, Jul 3, 18:49 (1 d, 16 h)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
b1/d7/e6d8f038d2e4cb1840bce918a11f
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