oauth permissions table

This commit is contained in:
friendica
2015-01-19 20:06:12 -08:00
parent ced0685d67
commit e3041b80fd
4 changed files with 59 additions and 3 deletions

View File

@@ -1539,6 +1539,22 @@ CREATE TABLE IF NOT EXISTS `xlink` (
-- --------------------------------------------------------
--
-- Table structure for table `xperm`
--
CREATE TABLE IF NOT EXISTS `xperm` (
`xp_id` INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY ,
`xp_client` VARCHAR( 20 ) NOT NULL DEFAULT '',
`xp_channel` INT UNSIGNED NOT NULL DEFAULT '0',
`xp_perm` VARCHAR( 64 ) NOT NULL DEFAULT '',
KEY `xp_client` (`xp_client`),
KEY `xp_channel` (`xp_channel`),
KEY `xp_perm` (`xp_perm`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Table structure for table `xprof`
--