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

(-)a/Koha/Schema/Result/Accountline.pm (-11 / +2 lines)
Lines 41-52 __PACKAGE__->table("accountlines"); Link Here
41
  is_foreign_key: 1
41
  is_foreign_key: 1
42
  is_nullable: 0
42
  is_nullable: 0
43
43
44
=head2 accountno
45
46
  data_type: 'smallint'
47
  default_value: 0
48
  is_nullable: 0
49
50
=head2 itemnumber
44
=head2 itemnumber
51
45
52
  data_type: 'integer'
46
  data_type: 'integer'
Lines 125-132 __PACKAGE__->add_columns( Link Here
125
    is_foreign_key => 1,
119
    is_foreign_key => 1,
126
    is_nullable    => 0,
120
    is_nullable    => 0,
127
  },
121
  },
128
  "accountno",
129
  { data_type => "smallint", default_value => 0, is_nullable => 0 },
130
  "itemnumber",
122
  "itemnumber",
131
  { data_type => "integer", is_foreign_key => 1, is_nullable => 1 },
123
  { data_type => "integer", is_foreign_key => 1, is_nullable => 1 },
132
  "date",
124
  "date",
Lines 236-243 __PACKAGE__->belongs_to( Link Here
236
);
228
);
237
229
238
230
239
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-05-16 17:00:24
231
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-10-26 10:50:35
240
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:pygYYKxFDRLX97PyeUeLvg
232
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:roZahdU2o+qh0eoaptydGg
241
233
242
234
243
# You can replace this text with custom content, and it will be preserved on regeneration
235
# You can replace this text with custom content, and it will be preserved on regeneration
244
- 

Return to bug 21683