removed unsupported sql statement from database upgrade script

Merge branch 'develop'
pull/43/MERGE
13621160019@163.com 2021-05-08 14:00:22 +08:00
commit 97c75fe001
1 changed files with 1 additions and 2 deletions

View File

@ -1,7 +1,6 @@
-- UPDATE POINT TABLE -- UPDATE POINT TABLE
ALTER TABLE myems_system_db.tbl_points MODIFY COLUMN low_limit decimal(18,3) NOT NULL; ALTER TABLE myems_system_db.tbl_points MODIFY COLUMN low_limit decimal(18,3) NOT NULL;
ALTER TABLE myems_system_db.tbl_points ADD is_virtual BOOL DEFAULT FALSE NOT NULL; ALTER TABLE myems_system_db.tbl_points ADD is_virtual BOOL DEFAULT FALSE NOT NULL AFTER is_trend;
ALTER TABLE myems_system_db.tbl_points CHANGE is_virtual is_virtual BOOL DEFAULT FALSE NOT NULL AFTER is_trend;
-- UPDATE VERSION NUMBER -- UPDATE VERSION NUMBER