Commit 2178db1f by mercymodest

feat: add 悦美 sql

parent 53ecd432
alter table company_cfg_reserve alter table company_cfg_reserve
...@@ -51,6 +51,50 @@ alter table room_order ...@@ -51,6 +51,50 @@ alter table room_order
alter table room_order alter table room_order
modify appointment_type tinyint(1) default 0 null comment '预约类型枚举 0:用户预约 1:后台预约 2:后台预约,未查询到公司信息'; modify appointment_type tinyint(1) default 0 null comment '预约类型枚举 0:用户预约 1:后台预约 2:后台预约,未查询到公司信息';
create index idx_project_uuid
on room_template (project_uuid);
alter table room_template
add constraint room_template_pk
primary key (uuid);
create index idx_project_uuid_region_uuid
on room_template (project_uuid, region_uuid);
alter table room_price
add constraint room_price_pk
primary key (uuid);
create index room_price_template_uuid_index
on room_price (template_uuid);
alter table room_rule_config
add constraint room_rule_config_pk
primary key (uuid);
create index room_rule_config_region_uuid_index
on room_rule_config (region_uuid);
alter table room_pay
add constraint room_pay_pk
primary key (uuid);
alter table room
add constraint room_pk
primary key (uuid);
create index room_region_uuid_index
on room (region_uuid);
create index room_project_uuid_region_uuid_index
on room (project_uuid, region_uuid);
alter table room_type
add constraint room_type_pk
primary key (uuid);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment