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
Fri, Jul 3, 18:49 (1 d, 17 h)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
b1/d7/e6d8f038d2e4cb1840bce918a11f
Default Alt Text
patch-gp_user-unsigned.sql (511 B)

Event Timeline