Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
R
robo-dividend
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
wenwen.tang
robo-dividend
Commits
94fe2e8d
Commit
94fe2e8d
authored
Nov 04, 2022
by
纪超
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
完成日志、配置文件、数据库工具模块
parent
45d2978d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
+11
-0
mysql.sql
datas/fund_info/mysql.sql
+11
-0
No files found.
datas/fund_info/mysql.sql
View file @
94fe2e8d
CREATE
TABLE
IF
NOT
EXISTS
robo_fund_info
(
rfi_id
BIGINT
UNSIGNED
NOT
NULL
AUTO_INCREMENT
,
rfi_datas
JSON
DEFAULT
NULL
COMMENT
'所有数据'
,
v_rfi_gender
VARCHAR
(
100
)
GENERATED
ALWAYS
AS
(
rfi_datas
->>
'$.gender'
)
COMMENT
'性别'
,
rfi_create_time
DATETIME
NOT
NULL
DEFAULT
CURRENT_TIMESTAMP
,
rfi_update_time
DATETIME
DEFAULT
NULL
ON
UPDATE
CURRENT_TIMESTAMP
,
PRIMARY
KEY
(
rfi_id
)
)
ENGINE
=
InnoDB
AUTO_INCREMENT
=
0
DEFAULT
CHARSET
=
utf8mb4
COMMENT
'用户信息表'
;
\ No newline at end of file
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