记得上下班打卡 | 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
fcf67bb4
Commit
fcf67bb4
authored
Aug 03, 2022
by
zhengfuxin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
初始化sql
parent
5100bb71
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
35 additions
and
1 deletion
+35
-1
db_liquidnet_admin_structure.sql
...et-client-admin-web/docu/db_liquidnet_admin_structure.sql
+35
-1
No files found.
liquidnet-bus-client/liquidnet-client-admin/liquidnet-client-admin-web/docu/db_liquidnet_admin_structure.sql
View file @
fcf67bb4
...
...
@@ -709,4 +709,38 @@ create table gen_table_column (
update_by
varchar
(
64
)
default
''
comment
'更新者'
,
update_time
datetime
comment
'更新时间'
,
primary
key
(
column_id
)
)
engine
=
innodb
auto_increment
=
1
comment
=
'代码生成业务表字段'
;
\ No newline at end of file
)
engine
=
innodb
auto_increment
=
1
comment
=
'代码生成业务表字段'
;
DROP
TABLE
IF
EXISTS
`kylin_recommend_active`
;
CREATE
TABLE
`kylin_recommend_active`
(
`mid`
bigint
(
20
)
NOT
NULL
AUTO_INCREMENT
,
`recommend_id`
varchar
(
255
)
CHARACTER
SET
utf8mb4
COLLATE
utf8mb4_unicode_ci
DEFAULT
NULL
COMMENT
'推荐活动id'
,
`start_time`
timestamp
NULL
DEFAULT
NULL
COMMENT
'开启时间'
,
`end_time`
timestamp
NULL
DEFAULT
NULL
COMMENT
'结束时间'
,
`active_name`
varchar
(
255
)
CHARACTER
SET
utf8mb4
COLLATE
utf8mb4_unicode_ci
DEFAULT
NULL
COMMENT
'活动名称'
,
`active_type`
int
(
2
)
DEFAULT
NULL
COMMENT
'1NFT2组合购3演出4商品'
,
`active_bind_id`
varchar
(
255
)
CHARACTER
SET
utf8mb4
COLLATE
utf8mb4_unicode_ci
DEFAULT
NULL
COMMENT
'活动绑定id'
,
`del_tag`
int
(
2
)
DEFAULT
NULL
COMMENT
'0未删除1已删除'
,
`created_at`
datetime
DEFAULT
NULL
COMMENT
'创建时间'
,
`updated_at`
datetime
DEFAULT
NULL
COMMENT
'修改时间'
,
`status`
int
(
2
)
DEFAULT
NULL
COMMENT
'0开启,1未开启'
,
PRIMARY
KEY
(
`mid`
)
)
ENGINE
=
InnoDB
AUTO_INCREMENT
=
9
DEFAULT
CHARSET
=
utf8mb4
COLLATE
=
utf8mb4_unicode_ci
COMMENT
=
'推荐活动表'
;
SET
FOREIGN_KEY_CHECKS
=
1
;
DROP
TABLE
IF
EXISTS
`kylin_recommend_active_relation`
;
CREATE
TABLE
`kylin_recommend_active_relation`
(
`mid`
bigint
(
20
)
NOT
NULL
AUTO_INCREMENT
,
`recommend_relation_id`
varchar
(
255
)
CHARACTER
SET
utf8mb4
COLLATE
utf8mb4_unicode_ci
DEFAULT
NULL
COMMENT
'推荐活动关系id'
,
`recommend_bind_id`
varchar
(
255
)
CHARACTER
SET
utf8mb4
COLLATE
utf8mb4_unicode_ci
DEFAULT
NULL
COMMENT
'推荐商品id'
,
`type`
int
(
255
)
DEFAULT
NULL
COMMENT
'1NFT2组合购3演出4商品'
,
`recommend_active_id`
varchar
(
255
)
CHARACTER
SET
utf8mb4
COLLATE
utf8mb4_unicode_ci
DEFAULT
NULL
COMMENT
'推荐活动id(关联id)'
,
`created_at`
datetime
DEFAULT
NULL
COMMENT
'创建时间'
,
`updated_at`
datetime
DEFAULT
NULL
COMMENT
'修改时间'
,
`del_tag`
int
(
2
)
DEFAULT
NULL
COMMENT
'0未删除1已删除'
,
`indexs`
int
(
11
)
DEFAULT
NULL
COMMENT
'排序'
,
PRIMARY
KEY
(
`mid`
)
)
ENGINE
=
InnoDB
AUTO_INCREMENT
=
13
DEFAULT
CHARSET
=
utf8mb4
COLLATE
=
utf8mb4_unicode_ci
COMMENT
=
'推荐活动关联表'
;
SET
FOREIGN_KEY_CHECKS
=
1
;
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