记得上下班打卡 | git大法好,push需谨慎
Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
liquidnet-bus-v1
Project
Project
Details
Activity
Releases
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
董敬伟
liquidnet-bus-v1
Commits
08622bf6
Commit
08622bf6
authored
May 09, 2022
by
高虎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sql变更
parent
53ac4d95
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
28 additions
and
0 deletions
+28
-0
db_0418_jxl_nft_exchange.sql
...net-service-goblin-impl/docu/db_0418_jxl_nft_exchange.sql
+28
-0
No files found.
liquidnet-bus-service/liquidnet-service-goblin/liquidnet-service-goblin-impl/docu/db_0418_jxl_nft_exchange.sql
View file @
08622bf6
...
...
@@ -96,3 +96,31 @@ CREATE TABLE `goblin_nft_ex_code_task_relation`
PRIMARY
KEY
(
`mid`
)
USING
BTREE
)
ENGINE
=
InnoDB
CHARACTER
SET
=
utf8mb4
COLLATE
=
utf8mb4_unicode_ci
COMMENT
=
'兑换码定时任务生成副表'
ROW_FORMAT
=
Dynamic
;
#
预约关联表新增创建时间
ALTER
TABLE
`goblin_goods_anticipate_user`
ADD
`created_date`
datetime
NULL
DEFAULT
NULL
COMMENT
'创建时间'
;
#
goblin_goods_anticipate
预约表新增字段
ALTER
TABLE
`goblin_goods_anticipate`
ADD
`people`
bigint
NOT
NULL
COMMENT
'预约人数(达到一定人数可以预约)'
;
ALTER
TABLE
`goblin_goods_anticipate`
ADD
`type`
int
NOT
NULL
COMMENT
'预约类型(1:预约提醒,2:预约获得购买资格)'
;
#
-- >>------------------------------------------------------------------------------------
DROP
TABLE
IF
EXISTS
`goblin_goods_anticipate_help`
;
CREATE
TABLE
`goblin_goods_anticipate_help`
(
`id`
bigint
NOT
NULL
AUTO_INCREMENT
COMMENT
'id'
,
`sid`
varbinary
(
255
)
NOT
NULL
COMMENT
'分享sid'
,
`help_uid`
varchar
(
255
)
CHARACTER
SET
utf8mb4
COLLATE
utf8mb4_unicode_ci
NOT
NULL
COMMENT
'助力人uid'
,
`created_date`
datetime
NOT
NULL
COMMENT
'创建时间'
,
PRIMARY
KEY
(
`id`
)
USING
BTREE
)
ENGINE
=
InnoDB
CHARACTER
SET
=
utf8mb4
COLLATE
=
utf8mb4_unicode_ci
COMMENT
=
'预约他人助力记录表'
ROW_FORMAT
=
Dynamic
;
#
-- >>------------------------------------------------------------------------------------
DROP
TABLE
IF
EXISTS
`goblin_goods_anticipate_share`
;
CREATE
TABLE
`goblin_goods_anticipate_share`
(
`sid`
varchar
(
255
)
CHARACTER
SET
utf8mb4
COLLATE
utf8mb4_unicode_ci
NOT
NULL
COMMENT
'主键ID'
,
`uid`
varchar
(
255
)
CHARACTER
SET
utf8mb4
COLLATE
utf8mb4_unicode_ci
NOT
NULL
COMMENT
'用户uid'
,
`sku_id`
varchar
(
255
)
CHARACTER
SET
utf8mb4
COLLATE
utf8mb4_unicode_ci
NOT
NULL
COMMENT
'sku_Id'
,
`created_date`
datetime
NOT
NULL
COMMENT
'创建时间'
,
PRIMARY
KEY
(
`sid`
)
USING
BTREE
)
ENGINE
=
InnoDB
CHARACTER
SET
=
utf8mb4
COLLATE
=
utf8mb4_unicode_ci
COMMENT
=
'预约创建助力表'
ROW_FORMAT
=
Dynamic
;
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