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

(-)a/Koha/Schema/Result/Accountline.pm (-1 / +8 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 148-153 __PACKAGE__->add_columns( Link Here
148
  { data_type => "mediumtext", is_nullable => 1 },
154
  { data_type => "mediumtext", is_nullable => 1 },
149
  "manager_id",
155
  "manager_id",
150
  { data_type => "integer", is_nullable => 1 },
156
  { data_type => "integer", is_nullable => 1 },
157
  "branchcode",
158
  { data_type => "varchar", is_nullable => 1, size => 10 },
151
);
159
);
152
160
153
=head1 PRIMARY KEY
161
=head1 PRIMARY KEY
154
- 

Return to bug 19066