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
723e9df6
Commit
723e9df6
authored
Apr 21, 2022
by
季圣华
Browse files
修改商品表的名称字段的长度
parent
e4a0a6a6
Changes
2
Hide whitespace changes
Inline
Side-by-side
jshERP-boot/docs/jsh_erp.sql
View file @
723e9df6
...
...
@@ -386,7 +386,7 @@ DROP TABLE IF EXISTS `jsh_material`;
CREATE
TABLE
`jsh_material`
(
`id`
bigint
(
20
)
NOT
NULL
AUTO_INCREMENT
COMMENT
'主键'
,
`category_id`
bigint
(
20
)
DEFAULT
NULL
COMMENT
'产品类型id'
,
`name`
varchar
(
5
0
)
DEFAULT
NULL
COMMENT
'名称'
,
`name`
varchar
(
10
0
)
DEFAULT
NULL
COMMENT
'名称'
,
`mfrs`
varchar
(
50
)
DEFAULT
NULL
COMMENT
'制造商'
,
`model`
varchar
(
50
)
DEFAULT
NULL
COMMENT
'型号'
,
`standard`
varchar
(
50
)
DEFAULT
NULL
COMMENT
'规格'
,
...
...
jshERP-boot/docs/数据库更新记录-首次安装请勿使用.txt
View file @
723e9df6
...
...
@@ -1329,4 +1329,11 @@ update jsh_msg set status='2' where id=2;
-- by jishenghua
-- 给单据表增加找零字段backAmount
-- --------------------------------------------------------
alter table jsh_depot_head add back_amount decimal(24,6) DEFAULT NULL COMMENT '找零金额' after change_amount;
\ No newline at end of file
alter table jsh_depot_head add back_amount decimal(24,6) DEFAULT NULL COMMENT '找零金额' after change_amount;
-- --------------------------------------------------------
-- 时间 2022年04月21日
-- by jishenghua
-- 修改商品表的名称字段的长度
-- --------------------------------------------------------
alter table jsh_material change name name varchar(100) DEFAULT NULL COMMENT '名称';
\ 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