View | Details | Raw Unified | Return to bug 14100
Collapse All | Expand All

(-)a/installer/data/mysql/kohastructure.sql (-2 / +1 lines)
Lines 3572-3578 CREATE TABLE `localization` ( Link Here
3572
      localization_id int(11) NOT NULL AUTO_INCREMENT,
3572
      localization_id int(11) NOT NULL AUTO_INCREMENT,
3573
      entity varchar(16) COLLATE utf8_unicode_ci NOT NULL,
3573
      entity varchar(16) COLLATE utf8_unicode_ci NOT NULL,
3574
      code varchar(64) COLLATE utf8_unicode_ci NOT NULL,
3574
      code varchar(64) COLLATE utf8_unicode_ci NOT NULL,
3575
      lang varchar(25) COLLATE utf8_unicode_ci NOT NULL, --could be a foreign key
3575
      lang varchar(25) COLLATE utf8_unicode_ci NOT NULL, -- could be a foreign key
3576
      translation text COLLATE utf8_unicode_ci,
3576
      translation text COLLATE utf8_unicode_ci,
3577
      PRIMARY KEY (localization_id),
3577
      PRIMARY KEY (localization_id),
3578
      UNIQUE KEY `entity_code_lang` (`entity`,`code`,`lang`)
3578
      UNIQUE KEY `entity_code_lang` (`entity`,`code`,`lang`)
3579
- 

Return to bug 14100