Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F1431328
patch-add_generic_fields.sql
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
523 B
Referenced Files
None
Subscribers
None
patch-add_generic_fields.sql
View Options
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
Details
Attached
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)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment