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

(-)a/Koha/Schema/Result/Branch.pm (-11 / +2 lines)
Lines 112-123 __PACKAGE__->table("branches"); Link Here
112
  is_nullable: 1
112
  is_nullable: 1
113
  size: 15
113
  size: 15
114
114
115
=head2 branchprinter
116
117
  data_type: 'varchar'
118
  is_nullable: 1
119
  size: 100
120
121
=head2 branchnotes
115
=head2 branchnotes
122
116
123
  data_type: 'longtext'
117
  data_type: 'longtext'
Lines 183-190 __PACKAGE__->add_columns( Link Here
183
  { data_type => "tinyint", is_nullable => 1 },
177
  { data_type => "tinyint", is_nullable => 1 },
184
  "branchip",
178
  "branchip",
185
  { data_type => "varchar", is_nullable => 1, size => 15 },
179
  { data_type => "varchar", is_nullable => 1, size => 15 },
186
  "branchprinter",
187
  { data_type => "varchar", is_nullable => 1, size => 100 },
188
  "branchnotes",
180
  "branchnotes",
189
  { data_type => "longtext", is_nullable => 1 },
181
  { data_type => "longtext", is_nullable => 1 },
190
  "opac_info",
182
  "opac_info",
Lines 737-744 __PACKAGE__->has_many( Link Here
737
);
729
);
738
730
739
731
740
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-12-26 10:51:35
732
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-03-10 09:57:08
741
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:vxx2lpU/W6cC5muhVAO1jw
733
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:juk2V/100I2EIrxFNhjI7A
742
734
743
__PACKAGE__->add_columns(
735
__PACKAGE__->add_columns(
744
    '+pickup_location' => { is_boolean => 1 }
736
    '+pickup_location' => { is_boolean => 1 }
745
- 

Return to bug 17845