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

(-)a/Koha/Schema/Result/Accountline.pm (-3 / +10 lines)
Lines 110-115 __PACKAGE__->table("accountlines"); Link Here
110
  data_type: 'integer'
110
  data_type: 'integer'
111
  is_nullable: 1
111
  is_nullable: 1
112
112
113
=head2 branchcode
114
115
  data_type: 'varchar'
116
  is_nullable: 1
117
  size: 10
118
113
=cut
119
=cut
114
120
115
__PACKAGE__->add_columns(
121
__PACKAGE__->add_columns(
Lines 153-158 __PACKAGE__->add_columns( Link Here
153
  { data_type => "text", is_nullable => 1 },
159
  { data_type => "text", is_nullable => 1 },
154
  "manager_id",
160
  "manager_id",
155
  { data_type => "integer", is_nullable => 1 },
161
  { data_type => "integer", is_nullable => 1 },
162
  "branchcode",
163
  { data_type => "varchar", is_nullable => 1, size => 10 },
156
);
164
);
157
165
158
=head1 PRIMARY KEY
166
=head1 PRIMARY KEY
Lines 235-242 __PACKAGE__->belongs_to( Link Here
235
);
243
);
236
244
237
245
238
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-10-23 12:27:23
246
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-02-02 14:51:30
239
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:S70xVMIJONd30d0kDrgF2A
247
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:R6NJ9RAHR5jZ64wWb4IhBg
240
248
241
249
242
# You can replace this text with custom content, and it will be preserved on regeneration
250
# You can replace this text with custom content, and it will be preserved on regeneration
243
- 

Return to bug 19066