Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
amos-boot-biz
Project
Project
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
项目统一框架
amos-boot-biz
Commits
1a3421b3
Commit
1a3421b3
authored
Oct 09, 2021
by
tianbo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改巡检隐患表
parent
f9170b2c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
create-latent-danger-table.sql
...esources/db/changelog/init/create-latent-danger-table.sql
+6
-6
No files found.
amos-boot-system-latentdanger/src/main/resources/db/changelog/init/create-latent-danger-table.sql
View file @
1a3421b3
...
...
@@ -18,10 +18,10 @@ SET NAMES utf8mb4;
SET
FOREIGN_KEY_CHECKS
=
0
;
-- ----------------------------
-- Table structure for
cb
_latent_danger
-- Table structure for
p
_latent_danger
-- ----------------------------
DROP
TABLE
IF
EXISTS
`
cb
_latent_danger`
;
CREATE
TABLE
`
cb
_latent_danger`
(
DROP
TABLE
IF
EXISTS
`
p
_latent_danger`
;
CREATE
TABLE
`
p
_latent_danger`
(
`id`
bigint
(
20
)
NOT
NULL
AUTO_INCREMENT
COMMENT
'主键自增'
,
`biz_type`
varchar
(
30
)
CHARACTER
SET
utf8
COLLATE
utf8_general_ci
NULL
DEFAULT
NULL
COMMENT
'业务类型(不同业务创建的隐患以此区分)'
,
`business_key`
varchar
(
255
)
CHARACTER
SET
utf8
COLLATE
utf8_general_ci
NOT
NULL
COMMENT
'业务唯一标识'
,
...
...
@@ -79,10 +79,10 @@ SET NAMES utf8mb4;
SET
FOREIGN_KEY_CHECKS
=
0
;
-- ----------------------------
-- Table structure for
cb
_latent_danger_flow_record
-- Table structure for
p
_latent_danger_flow_record
-- ----------------------------
DROP
TABLE
IF
EXISTS
`
cb
_latent_danger_flow_record`
;
CREATE
TABLE
`
cb
_latent_danger_flow_record`
(
DROP
TABLE
IF
EXISTS
`
p
_latent_danger_flow_record`
;
CREATE
TABLE
`
p
_latent_danger_flow_record`
(
`id`
bigint
(
20
)
NOT
NULL
AUTO_INCREMENT
COMMENT
'主键自增'
,
`danger_id`
bigint
(
20
)
NOT
NULL
COMMENT
'隐患编号'
,
`action_flag`
varchar
(
50
)
CHARACTER
SET
utf8
COLLATE
utf8_general_ci
NOT
NULL
COMMENT
'执行标志'
,
...
...
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