Increase maximum varchar size to 255 for attribute_value

This commit is contained in:
objecttothis
2018-11-27 17:37:27 +04:00
parent 0509c24f31
commit cc669eb347

View File

@@ -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;