Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
patzn-cloud-service-hmhj
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wangweidong
patzn-cloud-service-hmhj
Commits
2ed3b1e4
Commit
2ed3b1e4
authored
Jul 09, 2021
by
lijingjing
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
缺失单价字段添加;
parent
7cac6acc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
1 deletions
+22
-1
20210709添加字段.sql
src/test/java/resources/db_sql/hmhj/v146/20210709添加字段.sql
+22
-1
No files found.
src/test/java/resources/db_sql/hmhj/v146/20210709添加字段.sql
View file @
2ed3b1e4
-- 新增
委托字段 --
-- 新增
委托字段 --
...
...
@@ -13,3 +13,24 @@ COMMENT ON COLUMN "public"."entrust"."proposer" IS '修改申请人';
COMMENT
ON
COLUMN
"public"
.
"entrust"
.
"approver"
IS
'修改审批人'
;
COMMENT
ON
COLUMN
"public"
.
"entrust"
.
"approve_time"
IS
'审批日期'
;
-- COMMENT ON COLUMN "public"."entrust"."total_fee" IS '检测费用';
ALTER
TABLE
"public"
.
"entrust"
ADD
COLUMN
"proposer_id"
int8
,
ADD
COLUMN
"approver_id"
int8
,
ADD
COLUMN
"proposer"
varchar
(
64
)
COLLATE
"pg_catalog"
.
"default"
,
ADD
COLUMN
"approver"
varchar
(
64
)
COLLATE
"pg_catalog"
.
"default"
,
-- ADD COLUMN "total_fee" numeric(10,2),
ADD
COLUMN
"approve_time"
timestamp
(
6
);
COMMENT
ON
COLUMN
"public"
.
"entrust"
.
"proposer_id"
IS
'修改申请人ID'
;
COMMENT
ON
COLUMN
"public"
.
"entrust"
.
"approver_id"
IS
'修改审批人ID'
;
COMMENT
ON
COLUMN
"public"
.
"entrust"
.
"proposer"
IS
'修改申请人'
;
COMMENT
ON
COLUMN
"public"
.
"entrust"
.
"approver"
IS
'修改审批人'
;
COMMENT
ON
COLUMN
"public"
.
"entrust"
.
"approve_time"
IS
'审批日期'
;
-- COMMENT ON COLUMN "public"."entrust"."total_fee" IS '检测费用';
ALTER
TABLE
"public"
.
"qualification"
ADD
COLUMN
"price"
numeric
(
10
,
2
)
default
0
.
00
;
COMMENT
ON
COLUMN
"public"
.
"qualification"
.
"price"
IS
'单价'
;
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