mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-05-05 22:35:29 -04:00
Fix comment cannot be null issue (#1483)
This commit is contained in:
@@ -13,6 +13,15 @@ ALTER TABLE `ospos_items`
|
||||
CHANGE COLUMN `item_pic` `pic_id` int(10) DEFAULT NULL;
|
||||
|
||||
-- Clear out emptied comments (0 inserted in comment if empty #192)
|
||||
ALTER TABLE ospos_sales
|
||||
MODIFY COLUMN comment text DEFAULT NULL;
|
||||
|
||||
ALTER TABLE ospos_receivings
|
||||
MODIFY COLUMN comment text DEFAULT NULL;
|
||||
|
||||
ALTER TABLE ospos_sales_suspended
|
||||
MODIFY COLUMN comment text DEFAULT NULL;
|
||||
|
||||
UPDATE `ospos_sales` SET comment = NULL WHERE comment = '0';
|
||||
UPDATE `ospos_receivings` SET comment = NULL WHERE comment = '0';
|
||||
UPDATE `ospos_sales_suspended` SET comment = NULL WHERE comment = '0';
|
||||
UPDATE `ospos_sales_suspended` SET comment = NULL WHERE comment = '0';
|
||||
|
||||
Reference in New Issue
Block a user