Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
dankal-data-view
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
仲光辉
dankal-data-view
Commits
7e29a1e5
Commit
7e29a1e5
authored
Sep 25, 2023
by
仲光辉
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: add sql.
parent
f8f7e078
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
31 additions
and
31 deletions
+31
-31
01-同步SQL记录.sql
MFG/01-同步SQL记录.sql
+31
-31
No files found.
MFG/01-同步SQL记录.sql
View file @
7e29a1e5
#
alt
er
table
admin
#
alt
er
table
admin
...
...
@@ -1621,33 +1621,36 @@
#
add
is_transfer
tinyint
(
1
)
default
0
null
comment
'是否城市间转介绍 0:否 1:是'
;
###
会议室改版
alter
table
room_order
add
pwd
varchar
(
100
)
default
null
null
comment
'预约密码'
;
###
会议室成员
CREATE
TABLE
room_order_member
(
room_order_member_uuid
BIGINT
(
19
)
NOT
NULL
PRIMARY
KEY
COMMENT
'room_order_member uuid'
,
room_order_uuid
CHAR
(
32
)
NOT
NULL
COMMENT
'room order uuid'
,
user_uuid
CHAR
(
32
)
NOT
NULL
COMMENT
'user uuid'
,
wx_union_id
CHAR
(
128
)
NOT
NULL
COMMENT
'微信的unionId'
,
role
TINYINT
(
1
)
DEFAULT
1
COMMENT
'角色:0:会议创建人 1:参会人员 default: 1'
)
COMMENT
'会议成员信息'
;
alter
table
room_order_member
add
create_time
datetime
not
null
comment
'创建时间'
;
alter
table
room_order_member
add
update_time
datetime
not
null
comment
'更新时间'
;
alter
table
room_order_member
add
is_delete
tinyint
(
1
)
default
0
null
comment
'是否删除 0:否 1:是'
;
alter
table
room_order_member
add
staff_name
varchar
(
30
)
null
comment
'员工姓名'
;
alter
table
room_order_member
add
staff_phone
varchar
(
20
)
null
comment
'员工手机号'
;
#
###
会议室改版
#
alter
table
room_order
#
add
pwd
varchar
(
100
)
default
null
null
comment
'预约密码'
;
#
###
会议室成员
#
CREATE
TABLE
room_order_member
#
(
#
room_order_member_uuid
BIGINT
(
19
)
NOT
NULL
PRIMARY
KEY
COMMENT
'room_order_member uuid'
,
#
room_order_uuid
CHAR
(
32
)
NOT
NULL
COMMENT
'room order uuid'
,
#
user_uuid
CHAR
(
32
)
NOT
NULL
COMMENT
'user uuid'
,
#
wx_union_id
CHAR
(
128
)
NOT
NULL
COMMENT
'微信的unionId'
,
#
role
TINYINT
(
1
)
DEFAULT
1
COMMENT
'角色:0:会议创建人 1:参会人员 default: 1'
#
)
COMMENT
'会议成员信息'
;
#
#
alter
table
room_order_member
#
add
create_time
datetime
not
null
comment
'创建时间'
;
#
#
alter
table
room_order_member
#
add
update_time
datetime
not
null
comment
'更新时间'
;
#
#
alter
table
room_order_member
#
add
is_delete
tinyint
(
1
)
default
0
null
comment
'是否删除 0:否 1:是'
;
#
#
alter
table
room_order_member
#
add
staff_name
varchar
(
30
)
null
comment
'员工姓名'
;
#
#
alter
table
room_order_member
#
add
staff_phone
varchar
(
20
)
null
comment
'员工手机号'
;
#
#
alter
table
room
#
add
is_screen
tinyint
(
1
)
default
0
null
comment
'是否是预约屏会议室 0:否 1:是 '
;
alter
table
contract
add
contract_invalid_type
tinyint
(
1
)
default
0
null
comment
'合同作废类型: 0:合同作废 1:合同变更老合同作废 2:合同变更新合同作废'
;
...
...
@@ -3372,9 +3375,6 @@ alter table contract
alter
table
contract
add
is_approval
tinyint
(
1
)
default
0
null
comment
'否审批通过 0:否 1:是'
;
alter
table
room
add
is_screen
tinyint
(
1
)
default
0
null
comment
'是否是预约屏会议室 0:否 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