Page MenuHomeWickedGov Phorge

patch-gp_user-unsigned.sql
No OneTemporary

Size
511 B
Referenced Files
None
Subscribers
None

patch-gp_user-unsigned.sql

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

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)

Event Timeline