7 lines
285 B
SQL
7 lines
285 B
SQL
/*
|
|
注意!如果其他项目或生成环境需要执行此脚本,需要修改数据库名字和表名前缀:比如说cheben_swzl_system 需要把test修改为cheben
|
|
*/
|
|
use `test_szwl_transport`;
|
|
alter table `material`
|
|
add column `weight`decimal(10, 2) comment '物料重量';
|