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

(-)a/Koha/Schema/Result/Localization.pm (-5 / +9 lines)
Lines 89-95 __PACKAGE__->set_primary_key("localization_id"); Link Here
89
89
90
=head1 UNIQUE CONSTRAINTS
90
=head1 UNIQUE CONSTRAINTS
91
91
92
=head2 C<entity_code_lang>
92
=head2 C<entity_code_interface_lang>
93
93
94
=over 4
94
=over 4
95
95
Lines 97-113 __PACKAGE__->set_primary_key("localization_id"); Link Here
97
97
98
=item * L</code>
98
=item * L</code>
99
99
100
=item * L</interface>
101
100
=item * L</lang>
102
=item * L</lang>
101
103
102
=back
104
=back
103
105
104
=cut
106
=cut
105
107
106
__PACKAGE__->add_unique_constraint("entity_code_lang", ["entity", "code", "lang"]);
108
__PACKAGE__->add_unique_constraint(
109
  "entity_code_interface_lang",
110
  ["entity", "code", "interface", "lang"],
111
);
107
112
108
113
109
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-02-28 10:27:49
114
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-02-28 11:21:32
110
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:z6Ygj7EGpmfEXDk6wZMS+A
115
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:27A/CGfEQT7isxQxrDRubw
111
116
112
117
113
# You can replace this text with custom code or comments, and it will be preserved on regeneration
118
# You can replace this text with custom code or comments, and it will be preserved on regeneration
114
- 

Return to bug 20307