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 131-138 __PACKAGE__->add_columns( Link Here
131
    is_foreign_key => 1,
125
    is_foreign_key => 1,
132
    is_nullable    => 0,
126
    is_nullable    => 0,
133
  },
127
  },
134
  "accountno",
135
  { data_type => "smallint", default_value => 0, is_nullable => 0 },
136
  "itemnumber",
128
  "itemnumber",
137
  { data_type => "integer", is_foreign_key => 1, is_nullable => 1 },
129
  { data_type => "integer", is_foreign_key => 1, is_nullable => 1 },
138
  "date",
130
  "date",
Lines 244-251 __PACKAGE__->belongs_to( Link Here
244
);
236
);
245
237
246
238
247
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2018-10-25 12:46:26
239
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-10-26 10:50:35
248
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:mmVBZKQGAVdqSUOHecOSFA
240
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:roZahdU2o+qh0eoaptydGg
249
241
250
242
251
# You can replace this text with custom content, and it will be preserved on regeneration
243
# You can replace this text with custom content, and it will be preserved on regeneration
252
- 

Return to bug 21683