mcramer
2013-09-06 f531ad0e479f8f9c65e6078601c14f9120b7a409
- Added missing remote_session column from last commit

2 files modified
4 ■■■■ changed files
install/sql/incremental/upd_0058.sql 3 ●●●●● patch | view | raw | blame | history
install/sql/ispconfig3.sql 1 ●●●● patch | view | raw | blame | history
install/sql/incremental/upd_0058.sql
@@ -1 +1,4 @@
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`;
install/sql/ispconfig3.sql
@@ -1087,6 +1087,7 @@
  `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 ;