|
|
@ -84,6 +84,7 @@ create table lcc_env_info |
|
|
env_name varchar(50) not null comment '环境名称', |
|
|
env_name varchar(50) not null comment '环境名称', |
|
|
is_virtual boolean not null default false comment '是否虚拟环境', |
|
|
is_virtual boolean not null default false comment '是否虚拟环境', |
|
|
env_payload varchar(3000) not null default 'N/A' comment '环境负载信息', |
|
|
env_payload varchar(3000) not null default 'N/A' comment '环境负载信息', |
|
|
|
|
|
auto_start boolean not null default false comment '是否自动启动', |
|
|
create_at timestamp not null comment '创建时间', |
|
|
create_at timestamp not null comment '创建时间', |
|
|
create_by varchar(50) not null comment '创建人', |
|
|
create_by varchar(50) not null comment '创建人', |
|
|
update_at timestamp null comment '更新时间', |
|
|
update_at timestamp null comment '更新时间', |
|
|
@ -92,8 +93,8 @@ create table lcc_env_info |
|
|
); |
|
|
); |
|
|
create index idx_lcc_env_info_1 on lcc_env_info (world_id); |
|
|
create index idx_lcc_env_info_1 on lcc_env_info (world_id); |
|
|
|
|
|
|
|
|
insert into lcc_env_info (env_id, world_id, env_name, is_virtual, env_payload, create_at, create_by, update_at, update_by) |
|
|
insert into lcc_env_info (env_id, world_id, env_name, is_virtual, env_payload, auto_start, create_at, create_by, update_at, update_by) |
|
|
values (1, 'example1', '台湾展会生产', false, 'N/A', now(), 'system', now(), 'system'), |
|
|
values (1, 'example1', '台湾展会生产', false, 'N/A', true, now(), 'system', now(), 'system'), |
|
|
(2, 'example1', '虚拟仿真', true, 'N/A', now(), 'system', now(), 'system'); |
|
|
(2, 'example1', '虚拟仿真', true, 'N/A', false, now(), 'system', now(), 'system'); |
|
|
|
|
|
|
|
|
``` |
|
|
``` |
|
|
|