Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
jinli gu
JSH ERP
Commits
36575451
Commit
36575451
authored
Oct 12, 2021
by
季圣华
Browse files
给租户增加备注字段
parent
cc314e6b
Changes
2
Hide whitespace changes
Inline
Side-by-side
jshERP-boot/docs/jsh_erp.sql
View file @
36575451
...
...
@@ -846,13 +846,14 @@ CREATE TABLE `jsh_tenant` (
`enabled`
bit
(
1
)
DEFAULT
b
'1'
COMMENT
'启用 0-禁用 1-启用'
,
`create_time`
datetime
DEFAULT
NULL
COMMENT
'创建时间'
,
`expire_time`
datetime
DEFAULT
NULL
COMMENT
'到期时间'
,
`remark`
varchar
(
500
)
DEFAULT
NULL
COMMENT
'备注'
,
PRIMARY
KEY
(
`id`
)
)
ENGINE
=
InnoDB
AUTO_INCREMENT
=
14
DEFAULT
CHARSET
=
utf8
COMMENT
=
'租户'
;
-- ----------------------------
-- Records of jsh_tenant
-- ----------------------------
INSERT
INTO
`jsh_tenant`
VALUES
(
'13'
,
'63'
,
'jsh'
,
'2000'
,
'1'
,
''
,
'2021-02-17 23:19:17'
,
'2099-02-17 23:19:17'
);
INSERT
INTO
`jsh_tenant`
VALUES
(
'13'
,
'63'
,
'jsh'
,
'2000'
,
'1'
,
''
,
'2021-02-17 23:19:17'
,
'2099-02-17 23:19:17'
,
null
);
-- ----------------------------
-- Table structure for jsh_unit
...
...
jshERP-boot/docs/数据库更新记录-首次安装请勿使用.txt
View file @
36575451
...
...
@@ -1266,4 +1266,11 @@ alter table jsh_serial_number add depot_id bigint(20) DEFAULT NULL COMMENT '仓
alter table jsh_serial_number add in_bill_no varchar(50) DEFAULT NULL COMMENT '入库单号' after updater;
alter table jsh_serial_number add out_bill_no varchar(50) DEFAULT NULL COMMENT '出库单号' after in_bill_no;
alter table jsh_serial_number drop column depot_head_id;
delete from jsh_function where number='010104';
\ No newline at end of file
delete from jsh_function where number='010104';
-- --------------------------------------------------------
-- 时间 2021年10月12日
-- by jishenghua
-- 给租户表增加备注字段
-- --------------------------------------------------------
alter table jsh_tenant add remark varchar(500) DEFAULT NULL COMMENT '备注' after expire_time;
\ No newline at end of file
Write
Preview
Supports
Markdown
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