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
46f77374
Commit
46f77374
authored
Feb 23, 2023
by
仲光辉
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: add sql.
parent
9fb5d900
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
1 deletion
+19
-1
2022.05.25 之后需要在线上数据执行的SQL.sql
2022.05.25 之后需要在线上数据执行的SQL.sql
+19
-1
No files found.
2022.05.25 之后需要在线上数据执行的SQL.sql
View file @
46f77374
#
#
2
022
.
05
.
25
#
#
2
022
.
05
.
25
...
...
@@ -5665,6 +5665,24 @@
###
线上数据已经执行
执行时间
:
2023
.
02
.
16
15
:
31
#
create
table
bill_bank_account
#
(
#
bill_bank_account_uuid
bigint
(
19
)
not
null
comment
'账单银行账户uuid'
#
primary
key
,
#
bill_uuid
bigint
(
19
)
not
null
comment
'账单uuid'
,
#
bill_code
varchar
(
255
)
not
null
comment
'账单编号'
,
#
contract_uuid
bigint
(
19
)
null
comment
'contract uuid'
,
#
contract_code
varchar
(
255
)
null
comment
'contract code'
,
#
original_bank_account
varchar
(
255
)
not
null
comment
'原始银行账户'
,
#
bank_account
varchar
(
255
)
not
null
comment
'银行账户'
,
#
create_time
datetime
default
CURRENT_TIMESTAMP
null
comment
'创建时间'
,
#
update_time
datetime
default
CURRENT_TIMESTAMP
null
on
update
CURRENT_TIMESTAMP
comment
'修改时间'
,
#
is_delete
int
(
1
)
default
0
null
comment
'是否删除:0.未删 1.已删除 default:0'
#
)
#
comment
'账单银行帐号表'
;
###
线上数据已经执行
执行时间
:
2023
.
02
.
23
10
:
50
...
...
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