|
|
|
@ -1,4 +1,4 @@
|
|
|
|
create table user_model_content
|
|
|
|
create table ry_user_model_content
|
|
|
|
(
|
|
|
|
(
|
|
|
|
id varchar(32) null comment '表id',
|
|
|
|
id varchar(32) null comment '表id',
|
|
|
|
user_id varchar(32) null comment '用户id',
|
|
|
|
user_id varchar(32) null comment '用户id',
|
|
|
|
@ -7,7 +7,7 @@ create table user_model_content
|
|
|
|
) comment '用户模型关系';
|
|
|
|
) comment '用户模型关系';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
create table model_content
|
|
|
|
create table ry_model_content
|
|
|
|
(
|
|
|
|
(
|
|
|
|
id varchar(32) not null comment '模型id'
|
|
|
|
id varchar(32) not null comment '模型id'
|
|
|
|
primary key,
|
|
|
|
primary key,
|
|
|
|
@ -24,7 +24,7 @@ create table model_content
|
|
|
|
events varchar(128) null comment '事件'
|
|
|
|
events varchar(128) null comment '事件'
|
|
|
|
) comment '模型内容';
|
|
|
|
) comment '模型内容';
|
|
|
|
|
|
|
|
|
|
|
|
create table canvas_cfg
|
|
|
|
create table ry_canvas_cfg
|
|
|
|
(
|
|
|
|
(
|
|
|
|
id varchar(32) not null comment '面板id' primary key,
|
|
|
|
id varchar(32) not null comment '面板id' primary key,
|
|
|
|
user_id varchar(32) null comment '用户id',
|
|
|
|
user_id varchar(32) null comment '用户id',
|
|
|
|
@ -40,7 +40,7 @@ create table canvas_cfg
|
|
|
|
drag_offset text null comment '拖拽(json)'
|
|
|
|
drag_offset text null comment '拖拽(json)'
|
|
|
|
) comment '面板';
|
|
|
|
) comment '面板';
|
|
|
|
|
|
|
|
|
|
|
|
create table grid_cfg
|
|
|
|
create table ry_grid_cfg
|
|
|
|
(
|
|
|
|
(
|
|
|
|
id varchar(32) not null
|
|
|
|
id varchar(32) not null
|
|
|
|
primary key,
|
|
|
|
primary key,
|
|
|
|
@ -51,7 +51,7 @@ create table grid_cfg
|
|
|
|
) comment '网格';
|
|
|
|
) comment '网格';
|
|
|
|
|
|
|
|
|
|
|
|
-- auto-generated definition
|
|
|
|
-- auto-generated definition
|
|
|
|
create table file_storage
|
|
|
|
create table ry_file_storage
|
|
|
|
(
|
|
|
|
(
|
|
|
|
id varchar(32) not null
|
|
|
|
id varchar(32) not null
|
|
|
|
primary key,
|
|
|
|
primary key,
|
|
|
|
|