adding application name to sharedsecret api codes

This commit is contained in:
Benjamin Sonntag 2015-01-06 17:58:22 +01:00
parent ac6d61ae6b
commit cb2ad782b4
1 changed files with 1 additions and 0 deletions

View File

@ -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';