Skip to content

Commit f531ad0

Browse files
author
mcramer
committed
- Added missing remote_session column from last commit
1 parent 9a7e4be commit f531ad0

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
11
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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1087,6 +1087,7 @@ CREATE TABLE `remote_session` (
10871087
`remote_session` varchar(64) NOT NULL,
10881088
`remote_userid` int(11) unsigned NOT NULL,
10891089
`remote_functions` text NOT NULL,
1090+
`client_login` tinyint(1) unsigned NOT NULL default '0',
10901091
`tstamp` int(10) unsigned NOT NULL,
10911092
PRIMARY KEY (`remote_session`)
10921093
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ;

0 commit comments

Comments
 (0)