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

(-)a/Koha/Schema/Result/Accountline.pm (-3 / +10 lines)
Lines 116-121 __PACKAGE__->table("accountlines"); Link Here
116
  data_type: 'integer'
116
  data_type: 'integer'
117
  is_nullable: 1
117
  is_nullable: 1
118
118
119
=head2 branchcode
120
121
  data_type: 'varchar'
122
  is_nullable: 1
123
  size: 10
124
119
=cut
125
=cut
120
126
121
__PACKAGE__->add_columns(
127
__PACKAGE__->add_columns(
Lines 161-166 __PACKAGE__->add_columns( Link Here
161
  { data_type => "mediumtext", is_nullable => 1 },
167
  { data_type => "mediumtext", is_nullable => 1 },
162
  "manager_id",
168
  "manager_id",
163
  { data_type => "integer", is_nullable => 1 },
169
  { data_type => "integer", is_nullable => 1 },
170
  "branchcode",
171
  { data_type => "varchar", is_nullable => 1, size => 10 },
164
);
172
);
165
173
166
=head1 PRIMARY KEY
174
=head1 PRIMARY KEY
Lines 243-250 __PACKAGE__->belongs_to( Link Here
243
);
251
);
244
252
245
253
246
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-04-19 12:18:02
254
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2018-07-26 13:06:50
247
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:FUX/e/s202yrUtP3c13lfw
255
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:EY6iEYJHKRCKcciuUzaH+Q
248
256
249
257
250
# You can replace this text with custom content, and it will be preserved on regeneration
258
# You can replace this text with custom content, and it will be preserved on regeneration
251
- 

Return to bug 19066