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
fad4ef3c
Commit
fad4ef3c
authored
Jan 04, 2023
by
仲光辉
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: add sql.
parent
a56fa5e9
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
5 deletions
+18
-5
2022.05.25 之后需要在线上数据执行的SQL.sql
2022.05.25 之后需要在线上数据执行的SQL.sql
+18
-5
No files found.
2022.05.25 之后需要在线上数据执行的SQL.sql
View file @
fad4ef3c
#
#
2
022
.
05
.
25
#
#
2
022
.
05
.
25
...
@@ -5231,7 +5231,6 @@
...
@@ -5231,7 +5231,6 @@
#
#
###
线上数据已经执行
执行时间
:
2022
.
11
.
28
15
:
30
###
线上数据已经执行
执行时间
:
2022
.
11
.
28
15
:
30
#
alter
table
project_contract_info
#
alter
table
project_contract_info
...
@@ -5248,9 +5247,6 @@
...
@@ -5248,9 +5247,6 @@
#
#
###
线上数据已经执行
执行时间
:
2022
.
12
.
81
23
:
23
###
线上数据已经执行
执行时间
:
2022
.
12
.
81
23
:
23
...
@@ -5608,6 +5604,23 @@
...
@@ -5608,6 +5604,23 @@
alter
table
opportunity
modify
is_delete
tinyint
(
1
)
default
0
null
comment
'是否删除:0-未删;1-已删除 1.8.1 新需求可以存在多条复看记录,没次看到的都是最新的一天记录数据 实现逻辑: 最新的记录数据的 isDelete 字段取值为0 ,其Ta记录数据的 isDelete 取值为 1'
;
alter
table
opportunity
add
origin_opportunity_uuid
bigint
(
19
)
not
null
comment
'当前记录所属初看/上一次复看记录 uuid {@link #getUuid()}'
;
alter
table
opportunity
add
review_times
int
default
0
null
comment
'复看次数 默认 0'
;
alter
table
opportunity
add
first_origin_opportunity_uuid
bigint
(
19
)
not
null
comment
'当前记录的初看记录uuid {@link #getUuid()}'
;
alter
table
opportunity
add
current_opportunity_uuid
bigint
(
19
)
not
null
comment
'当前最新的记录uuid {@code {@link #isDelete} == 0}'
;
...
...
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