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

(-)a/Koha/Schema/Result/Aqbasket.pm (-3 / +14 lines)
Lines 112-117 __PACKAGE__->table("aqbasket"); Link Here
112
  default_value: 0
112
  default_value: 0
113
  is_nullable: 0
113
  is_nullable: 0
114
114
115
=head2 create_items
116
117
  data_type: 'enum'
118
  extra: {list => ["ordering","receiving","cataloguing"]}
119
  is_nullable: 1
120
115
=cut
121
=cut
116
122
117
__PACKAGE__->add_columns(
123
__PACKAGE__->add_columns(
Lines 150-155 __PACKAGE__->add_columns( Link Here
150
  { data_type => "varchar", is_foreign_key => 1, is_nullable => 1, size => 10 },
156
  { data_type => "varchar", is_foreign_key => 1, is_nullable => 1, size => 10 },
151
  "is_standing",
157
  "is_standing",
152
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
158
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
159
  "create_items",
160
  {
161
    data_type => "enum",
162
    extra => { list => ["ordering", "receiving", "cataloguing"] },
163
    is_nullable => 1,
164
  },
153
);
165
);
154
166
155
=head1 PRIMARY KEY
167
=head1 PRIMARY KEY
Lines 297-304 Composing rels: L</aqbasketusers> -> borrowernumber Link Here
297
__PACKAGE__->many_to_many("borrowernumbers", "aqbasketusers", "borrowernumber");
309
__PACKAGE__->many_to_many("borrowernumbers", "aqbasketusers", "borrowernumber");
298
310
299
311
300
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-04-29 13:13:55
312
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-10-10 14:27:08
301
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:6gRJtrZ6ZXLHjqX281d9Hg
313
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:4lGbfEcXLR67RbYp4aNzTg
302
314
303
315
304
# You can replace this text with custom code or comments, and it will be preserved on regeneration
316
# You can replace this text with custom code or comments, and it will be preserved on regeneration
305
- 

Return to bug 15685