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

(-)a/Koha/Schema/Result/Accountline.pm (-3 / +9 lines)
Lines 29-34 __PACKAGE__->table("accountlines"); Link Here
29
  is_auto_increment: 1
29
  is_auto_increment: 1
30
  is_nullable: 0
30
  is_nullable: 0
31
31
32
=head2 issue_id
33
34
  data_type: 'integer'
35
  is_nullable: 1
36
32
=head2 borrowernumber
37
=head2 borrowernumber
33
38
34
  data_type: 'integer'
39
  data_type: 'integer'
Lines 122-127 __PACKAGE__->table("accountlines"); Link Here
122
__PACKAGE__->add_columns(
127
__PACKAGE__->add_columns(
123
  "accountlines_id",
128
  "accountlines_id",
124
  { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
129
  { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
130
  "issue_id",
131
  { data_type => "integer", is_nullable => 1 },
125
  "borrowernumber",
132
  "borrowernumber",
126
  {
133
  {
127
    data_type      => "integer",
134
    data_type      => "integer",
Lines 214-221 __PACKAGE__->belongs_to( Link Here
214
);
221
);
215
222
216
223
217
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2014-07-11 09:26:55
224
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-01-26 17:18:34
218
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:jUiCeLLPg5228rNEBW0w2g
225
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:RCQohhphtg+0+RszpB4wLg
219
226
220
227
221
# You can replace this text with custom content, and it will be preserved on regeneration
228
# You can replace this text with custom content, and it will be preserved on regeneration
222
- 

Return to bug 15675