adding application name to sharedsecret api codes
This commit is contained in:
parent
ac6d61ae6b
commit
cb2ad782b4
|
@ -5,6 +5,7 @@
|
||||||
CREATE TABLE IF NOT EXISTS `sharedsecret` (
|
CREATE TABLE IF NOT EXISTS `sharedsecret` (
|
||||||
`uid` int(10) unsigned NOT NULL,
|
`uid` int(10) unsigned NOT NULL,
|
||||||
`secret` varchar(32) NOT NULL,
|
`secret` varchar(32) NOT NULL,
|
||||||
|
`application` varchar(255) NOT NULL,
|
||||||
PRIMARY KEY (`uid`,`secret`)
|
PRIMARY KEY (`uid`,`secret`)
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Shared secrets used by Alternc_Api_Auth_Sharedsecret';
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Shared secrets used by Alternc_Api_Auth_Sharedsecret';
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue