mirror of
https://gitee.com/goploy/goploy.git
synced 2024-11-30 03:07:59 +08:00
8 lines
326 B
SQL
8 lines
326 B
SQL
ALTER TABLE `server_process`
|
|
ADD COLUMN `namespace_id` int UNSIGNED NOT NULL,
|
|
ADD COLUMN `items` json NULL COMMENT '{name: string, command: string}[]';
|
|
|
|
UPDATE `server_process` SET `items` = '[]';
|
|
|
|
INSERT IGNORE INTO `permission`(`id`, `pid`, `name`, `sort`, `description`) VALUES (75, 23, 'SFTPTransferFile', 0, '');
|