From cc669eb347bb16be61d9805d7442ecaaf4b97c2c Mon Sep 17 00:00:00 2001 From: objecttothis Date: Tue, 27 Nov 2018 17:37:27 +0400 Subject: [PATCH] Increase maximum varchar size to 255 for attribute_value --- application/migrations/sqlscripts/attributes.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/migrations/sqlscripts/attributes.sql b/application/migrations/sqlscripts/attributes.sql index b883058f7..d7137c3b3 100644 --- a/application/migrations/sqlscripts/attributes.sql +++ b/application/migrations/sqlscripts/attributes.sql @@ -13,7 +13,7 @@ CREATE TABLE IF NOT EXISTS `ospos_attribute_definitions` ( CREATE TABLE IF NOT EXISTS `ospos_attribute_values` ( `attribute_id` INT NOT NULL AUTO_INCREMENT, - `attribute_value` VARCHAR(45) NULL, + `attribute_value` VARCHAR(255) NULL, `attribute_datetime` DATETIME NULL, PRIMARY KEY (`attribute_id`) ) ENGINE = InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;