Page MenuHomeWickedGov Phorge

patch-remove_module_specific_fields.sql
No OneTemporary

Size
371 B
Referenced Files
None
Subscribers
None

patch-remove_module_specific_fields.sql

CREATE TABLE /*_*/oathauth_users_tmp (
-- User ID
id int not null primary key,
-- Module user has selected
module text not null,
-- Data
data blob null
);
INSERT INTO /*_*/oathauth_users_tmp (id, module, data)
SELECT id, module, data FROM /*_*/oathauth_users;
DROP TABLE /*_*/oathauth_users;
ALTER TABLE /*_*/oathauth_users_tmp RENAME TO /*_*/oathauth_users;

File Metadata

Mime Type
text/plain
Expires
Wed, Aug 19, 15:50 (3 w, 6 d ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
7e/3d/7b845645eef74a546b50a2dbf8bd
Default Alt Text
patch-remove_module_specific_fields.sql (371 B)

Event Timeline