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

(-)a/Koha/Schema/Result/Localization.pm (-3 / +10 lines)
Lines 35-40 __PACKAGE__->table("localization"); Link Here
35
  is_nullable: 0
35
  is_nullable: 0
36
  size: 16
36
  size: 16
37
37
38
=head2 interface
39
40
  data_type: 'varchar'
41
  is_nullable: 1
42
  size: 30
43
38
=head2 code
44
=head2 code
39
45
40
  data_type: 'varchar'
46
  data_type: 'varchar'
Lines 59-64 __PACKAGE__->add_columns( Link Here
59
  { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
65
  { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
60
  "entity",
66
  "entity",
61
  { data_type => "varchar", is_nullable => 0, size => 16 },
67
  { data_type => "varchar", is_nullable => 0, size => 16 },
68
  "interface",
69
  { data_type => "varchar", is_nullable => 1, size => 30 },
62
  "code",
70
  "code",
63
  { data_type => "varchar", is_nullable => 0, size => 64 },
71
  { data_type => "varchar", is_nullable => 0, size => 64 },
64
  "lang",
72
  "lang",
Lines 98-105 __PACKAGE__->set_primary_key("localization_id"); Link Here
98
__PACKAGE__->add_unique_constraint("entity_code_lang", ["entity", "code", "lang"]);
106
__PACKAGE__->add_unique_constraint("entity_code_lang", ["entity", "code", "lang"]);
99
107
100
108
101
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-02-16 17:54:54
109
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-02-28 10:27:49
102
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:4642LmshpGd3JW7YxM5pIA
110
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:z6Ygj7EGpmfEXDk6wZMS+A
103
111
104
112
105
# You can replace this text with custom code or comments, and it will be preserved on regeneration
113
# You can replace this text with custom code or comments, and it will be preserved on regeneration
106
- 

Return to bug 20307