Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
dankal-data-view
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
仲光辉
dankal-data-view
Commits
2178db1f
Commit
2178db1f
authored
May 08, 2024
by
mercymodest
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: add 悦美 sql
parent
53ecd432
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
45 additions
and
1 deletion
+45
-1
更新SQL.sql
悦美/更新SQL.sql
+45
-1
No files found.
悦美/更新SQL.sql
View file @
2178db1f
alter
table
company_cfg_reserve
alter
table
company_cfg_reserve
...
...
@@ -51,6 +51,50 @@ alter table room_order
alter
table
room_order
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
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment