Extend Return Policy length to 500, reduce app_config key length to 50 (#879)

This commit is contained in:
FrancescoUK
2016-10-01 10:25:44 +01:00
parent 7bba5f9dd0
commit a1a6ede046
4 changed files with 10 additions and 6 deletions

View File

@@ -4,8 +4,8 @@
--
CREATE TABLE `ospos_app_config` (
`key` varchar(255) NOT NULL,
`value` varchar(255) NOT NULL,
`key` varchar(50) NOT NULL,
`value` varchar(500) NOT NULL,
PRIMARY KEY (`key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;