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

(-)a/Koha/Schema/Result/LanguageDescription.pm (-2 / +20 lines)
Lines 80-88 __PACKAGE__->add_columns( Link Here
80
80
81
__PACKAGE__->set_primary_key("id");
81
__PACKAGE__->set_primary_key("id");
82
82
83
=head1 UNIQUE CONSTRAINTS
83
84
84
# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21
85
=head2 C<subtag_type_lang>
85
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:fQEN7ks3f7aLuoDQWqEv+Q
86
87
=over 4
88
89
=item * L</subtag>
90
91
=item * L</type>
92
93
=item * L</lang>
94
95
=back
96
97
=cut
98
99
__PACKAGE__->add_unique_constraint("subtag_type_lang", ["subtag", "type", "lang"]);
100
101
102
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-11-30 13:58:48
103
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:47kn6QYcK/PKIvsxwsUl0w
86
104
87
105
88
# You can replace this text with custom content, and it will be preserved on regeneration
106
# You can replace this text with custom content, and it will be preserved on regeneration
(-)a/installer/data/mysql/kohastructure.sql (-2 / +1 lines)
Lines 3216-3222 CREATE TABLE `language_descriptions` ( Link Here
3216
  `id` int(11) NOT NULL AUTO_INCREMENT,
3216
  `id` int(11) NOT NULL AUTO_INCREMENT,
3217
  PRIMARY KEY (`id`),
3217
  PRIMARY KEY (`id`),
3218
  KEY `lang` (`lang`),
3218
  KEY `lang` (`lang`),
3219
  KEY `subtag_type_lang` (`subtag`,`type`,`lang`)
3219
  UNIQUE KEY `subtag_type_lang` (`subtag`,`type`,`lang`)
3220
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
3220
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
3221
/*!40101 SET character_set_client = @saved_cs_client */;
3221
/*!40101 SET character_set_client = @saved_cs_client */;
3222
3222
3223
- 

Return to bug 15067