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 88629fa commit 9a7e4beCopy full SHA for 9a7e4be
install/sql/incremental/upd_0058.sql
@@ -0,0 +1 @@
1
+ALTER TABLE `client` ADD COLUMN `can_use_api` enum('n','y') NOT NULL DEFAULT 'n' AFTER `canceled`;
install/sql/ispconfig3.sql
@@ -228,6 +228,7 @@ CREATE TABLE `client` (
228
`created_at` bigint(20) DEFAULT NULL,
229
`locked` enum('n','y') NOT NULL DEFAULT 'n',
230
`canceled` enum('n','y') NOT NULL DEFAULT 'n',
231
+ `can_use_api` enum('n','y') NOT NULL DEFAULT 'n',
232
`tmp_data` mediumblob,
233
`id_rsa` varchar(2000) NOT NULL DEFAULT '',
234
`ssh_rsa` varchar(600) NOT NULL DEFAULT '',
0 commit comments