We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a7e4be commit f531ad0Copy full SHA for f531ad0
install/sql/incremental/upd_0058.sql
@@ -1 +1,4 @@
1
ALTER TABLE `client` ADD COLUMN `can_use_api` enum('n','y') NOT NULL DEFAULT 'n' AFTER `canceled`;
2
+
3
+ALTER TABLE `remote_session` ADD COLUMN `client_login` tinyint(1) unsigned NOT NULL default '0' AFTER `remote_functions`;
4
install/sql/ispconfig3.sql
@@ -1087,6 +1087,7 @@ CREATE TABLE `remote_session` (
1087
`remote_session` varchar(64) NOT NULL,
1088
`remote_userid` int(11) unsigned NOT NULL,
1089
`remote_functions` text NOT NULL,
1090
+ `client_login` tinyint(1) unsigned NOT NULL default '0',
1091
`tstamp` int(10) unsigned NOT NULL,
1092
PRIMARY KEY (`remote_session`)
1093
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ;
0 commit comments