Browse Source

修改sql脚本 设置网格数默认10

dev
sunyuchao 5 years ago
parent
commit
83424ba36b
  1. 2
      epmet-module/oper-crm/oper-crm-server/src/main/resources/db/migration/V0.0.2__update_customer.sql

2
epmet-module/oper-crm/oper-crm-server/src/main/resources/db/migration/V0.0.2__update_customer.sql

@ -1,3 +1,5 @@
ALTER TABLE `customer`
ADD COLUMN `GRID_NUMBER` int(11) NULL COMMENT '客户允许创建的网格数' AFTER `ORGANIZATION_LEVEL`;
UPDATE customer SET GRID_NUMBER = 10;
Loading…
Cancel
Save