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
afd50f7a
Commit
afd50f7a
authored
Oct 10, 2022
by
仲光辉
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
style: 补充已经执行过的 SQL.
parent
13771cba
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
1 deletion
+17
-1
2022.05.25 之后需要在线上数据执行的SQL.sql
2022.05.25 之后需要在线上数据执行的SQL.sql
+17
-1
No files found.
2022.05.25 之后需要在线上数据执行的SQL.sql
View file @
afd50f7a
#
#
2
022
.
05
.
25
#
#
2
022
.
05
.
25
...
...
@@ -5023,6 +5023,22 @@
#
alter
table
bill
#
modify
verification_time
datetime
null
comment
'核验时间'
;
#
CREATE
TABLE
`contract_remote_meter_reading`
(
#
`meter_reading_date`
int
(
2
)
DEFAULT
NULL
COMMENT
'抄表日期'
,
#
`region_uuid`
char
(
32
)
COLLATE
utf8mb4_unicode_ci
DEFAULT
NULL
COMMENT
'城市uuid'
,
#
`region_name`
varchar
(
50
)
COLLATE
utf8mb4_unicode_ci
DEFAULT
NULL
COMMENT
'所属城市名,冗余region表,记得同步更新'
,
#
`is_delete`
tinyint
(
1
)
DEFAULT
'0'
COMMENT
'是否删除:0-未删;1-已删除'
,
#
`create_uuid`
char
(
32
)
COLLATE
utf8mb4_unicode_ci
DEFAULT
NULL
COMMENT
'创建人'
,
#
`update_uuid`
char
(
32
)
COLLATE
utf8mb4_unicode_ci
DEFAULT
NULL
COMMENT
'修改人'
,
#
`create_time`
datetime
DEFAULT
CURRENT_TIMESTAMP
COMMENT
'创建时间'
,
#
`update_time`
datetime
DEFAULT
CURRENT_TIMESTAMP
ON
UPDATE
CURRENT_TIMESTAMP
COMMENT
'修改时间'
,
#
KEY
`region_uuid_index`
(
`region_uuid`
)
#
)
ENGINE
=
InnoDB
DEFAULT
CHARSET
=
utf8mb4
COLLATE
=
utf8mb4_unicode_ci
COMMENT
=
'合同 -- 合同抄表配置信息表'
;
#
ALTER
TABLE
`bill_charge_notice_history`
#
MODIFY
COLUMN
`build_time`
datetime
NULL
DEFAULT
NULL
COMMENT
'生成日期'
AFTER
`build_type`
;
###
线上数据已经执行
执行时间
:
2022
.
10
.
09
16
:
56
...
...
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