Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
8
8timerapiv200
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
8timerv2
8timerapiv200
Commits
82f873ac
Commit
82f873ac
authored
Sep 28, 2022
by
284718418@qq.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
更新MySQL脚本
parent
d59d2e72
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
sql/insure_policy.sql
+5
-0
No files found.
sql/insure_policy.sql
View file @
82f873ac
...
...
@@ -198,6 +198,8 @@ ALTER TABLE `insure_policy`
ADD
COLUMN
`policy_pay_type`
int
(
11
)
NOT
NULL
DEFAULT
1
COMMENT
'1在线支付 2预付款 3线下支付'
AFTER
`create_time`
,
ADD
COLUMN
`pay_id`
int
(
11
)
NULL
DEFAULT
NULL
COMMENT
'insure_pay表的id'
AFTER
`policy_pay_type`
;
#
2022
年
9
月
28
日
11
:
47
:
51
ALTER
TABLE
`insure_user`
ADD
COLUMN
`product_plan_id`
int
(
11
)
NULL
DEFAULT
NULL
COMMENT
'insure_product_plan表的Id'
AFTER
`remake`
;
...
...
@@ -223,3 +225,6 @@ CREATE TABLE `insure_product_plan` (
PRIMARY
KEY
(
`id`
)
USING
BTREE
)
ENGINE
=
InnoDB
AUTO_INCREMENT
=
8
CHARACTER
SET
=
utf8
COLLATE
=
utf8_general_ci
COMMENT
=
'投保方案中间表'
ROW_FORMAT
=
Dynamic
;
ALTER
TABLE
`insure_user`
MODIFY
COLUMN
`price`
double
(
10
,
2
)
NULL
DEFAULT
NULL
COMMENT
'单价'
AFTER
`trans_id`
,
MODIFY
COLUMN
`premium`
double
(
10
,
2
)
NULL
DEFAULT
NULL
COMMENT
'保单批次保费'
AFTER
`batch_no`
;
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