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

(-)a/Koha/Schema/Result/Branch.pm (-3 / +10 lines)
Lines 134-139 __PACKAGE__->table("branches"); Link Here
134
  is_nullable: 1
134
  is_nullable: 1
135
  size: 255
135
  size: 255
136
136
137
=head2 marcorgcode
138
139
  data_type: 'varchar'
140
  is_nullable: 1
141
  size: 16
142
137
=cut
143
=cut
138
144
139
__PACKAGE__->add_columns(
145
__PACKAGE__->add_columns(
Lines 179-184 __PACKAGE__->add_columns( Link Here
179
  { data_type => "text", is_nullable => 1 },
185
  { data_type => "text", is_nullable => 1 },
180
  "geolocation",
186
  "geolocation",
181
  { data_type => "varchar", is_nullable => 1, size => 255 },
187
  { data_type => "varchar", is_nullable => 1, size => 255 },
188
  "marcorgcode",
189
  { data_type => "varchar", is_nullable => 1, size => 16 },
182
);
190
);
183
191
184
=head1 PRIMARY KEY
192
=head1 PRIMARY KEY
Lines 596-603 Composing rels: L</branchrelations> -> categorycode Link Here
596
__PACKAGE__->many_to_many("categorycodes", "branchrelations", "categorycode");
604
__PACKAGE__->many_to_many("categorycodes", "branchrelations", "categorycode");
597
605
598
606
599
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-04-26 16:17:25
607
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-06-03 21:53:00
600
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:99U1YQ4iSum4LbBha4hDTQ
608
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:S44besPbFRnPJpyHRK+aSQ
601
609
602
610
603
# You can replace this text with custom code or comments, and it will be preserved on regeneration
611
# You can replace this text with custom code or comments, and it will be preserved on regeneration
604
- 

Return to bug 10132