Page MenuHomeWickedGov Phorge

patch-add_generic_fields.sql
No OneTemporary

Size
523 B
Referenced Files
None
Subscribers
None

patch-add_generic_fields.sql

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

File Metadata

Mime Type
text/plain
Expires
Sat, May 16, 20:20 (1 d, 1 h)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
24/01/2c6f1ccd6f496d23a6c5ed889400
Default Alt Text
patch-add_generic_fields.sql (523 B)

Event Timeline