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

(-)a/Koha/Schema/Result/Accountline.pm (-3 / +10 lines)
Lines 122-127 __PACKAGE__->table("accountlines"); Link Here
122
  data_type: 'integer'
122
  data_type: 'integer'
123
  is_nullable: 1
123
  is_nullable: 1
124
124
125
=head2 branchcode
126
127
  data_type: 'varchar'
128
  is_nullable: 1
129
  size: 10
130
125
=cut
131
=cut
126
132
127
__PACKAGE__->add_columns(
133
__PACKAGE__->add_columns(
Lines 169-174 __PACKAGE__->add_columns( Link Here
169
  { data_type => "text", is_nullable => 1 },
175
  { data_type => "text", is_nullable => 1 },
170
  "manager_id",
176
  "manager_id",
171
  { data_type => "integer", is_nullable => 1 },
177
  { data_type => "integer", is_nullable => 1 },
178
  "branchcode",
179
  { data_type => "varchar", is_nullable => 1, size => 10 },
172
);
180
);
173
181
174
=head1 PRIMARY KEY
182
=head1 PRIMARY KEY
Lines 221-228 __PACKAGE__->belongs_to( Link Here
221
);
229
);
222
230
223
231
224
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-01-26 17:18:34
232
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-06-27 17:53:13
225
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:RCQohhphtg+0+RszpB4wLg
233
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:MfimYr/8cDS5r05Jly91FA
226
234
227
235
228
# You can replace this text with custom content, and it will be preserved on regeneration
236
# You can replace this text with custom content, and it will be preserved on regeneration
229
- 

Return to bug 7595