Bug 14100: (QA followup) fix wrong comment in kohastructure.sql

Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
This commit is contained in:
Tomás Cohen Arazi 2015-10-27 12:50:32 -03:00
parent 7dd5352b3c
commit 7d0ec7be45

View file

@ -3572,7 +3572,7 @@ CREATE TABLE `localization` (
localization_id int(11) NOT NULL AUTO_INCREMENT,
entity varchar(16) COLLATE utf8_unicode_ci NOT NULL,
code varchar(64) COLLATE utf8_unicode_ci NOT NULL,
lang varchar(25) COLLATE utf8_unicode_ci NOT NULL, --could be a foreign key
lang varchar(25) COLLATE utf8_unicode_ci NOT NULL, -- could be a foreign key
translation text COLLATE utf8_unicode_ci,
PRIMARY KEY (localization_id),
UNIQUE KEY `entity_code_lang` (`entity`,`code`,`lang`)