- Added missing remote_session column from last commit
| | |
| | | ALTER TABLE `client` ADD COLUMN `can_use_api` enum('n','y') NOT NULL DEFAULT 'n' AFTER `canceled`; |
| | | |
| | | ALTER TABLE `remote_session` ADD COLUMN `client_login` tinyint(1) unsigned NOT NULL default '0' AFTER `remote_functions`; |
| | | |
| | |
| | | `remote_session` varchar(64) NOT NULL, |
| | | `remote_userid` int(11) unsigned NOT NULL, |
| | | `remote_functions` text NOT NULL, |
| | | `client_login` tinyint(1) unsigned NOT NULL default '0', |
| | | `tstamp` int(10) unsigned NOT NULL, |
| | | PRIMARY KEY (`remote_session`) |
| | | ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ; |