记得上下班打卡 | 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
6447b2a4
Commit
6447b2a4
authored
May 09, 2022
by
jiangxiulong
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/dev_yy_dh' into dev_yy_dh
parents
0bf5512d
08622bf6
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
29 additions
and
1 deletion
+29
-1
liquidnet-service-platform.yml
...us-config/liquidnet-config/liquidnet-service-platform.yml
+1
-1
db_0418_jxl_nft_exchange.sql
...net-service-goblin-impl/docu/db_0418_jxl_nft_exchange.sql
+28
-0
No files found.
liquidnet-bus-config/liquidnet-config/liquidnet-service-platform.yml
View file @
6447b2a4
...
...
@@ -59,7 +59,7 @@ info:
version
:
'
@project.version@'
# -----------------------------------------------------------
mybatis-plus
:
mapper-locations
:
classpath*:com.liquidnet.service.*.mapper/*Mapper.xml
,classpath:com.liquidnet.service.*.mapper/*Mapper.xml,classpath:com.liquidnet.service.kylin.mapper/*Mapper.xml
mapper-locations
:
classpath*:com.liquidnet.service.*.mapper/*Mapper.xml
# -----------------------------------------------------------
spring
:
application
:
...
...
liquidnet-bus-service/liquidnet-service-goblin/liquidnet-service-goblin-impl/docu/db_0418_jxl_nft_exchange.sql
View file @
6447b2a4
...
...
@@ -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