Lines 99-104
__PACKAGE__->table("aqbasket");
Link Here
|
99 |
is_nullable: 1 |
99 |
is_nullable: 1 |
100 |
size: 10 |
100 |
size: 10 |
101 |
|
101 |
|
|
|
102 |
=head2 create_items |
103 |
|
104 |
data_type: 'enum' |
105 |
extra: {list => ["ordering","receiving","cataloguing"]} |
106 |
is_nullable: 1 |
107 |
|
102 |
=head2 branch |
108 |
=head2 branch |
103 |
|
109 |
|
104 |
data_type: 'varchar' |
110 |
data_type: 'varchar' |
Lines 146-151
__PACKAGE__->add_columns(
Link Here
|
146 |
{ data_type => "varchar", is_nullable => 1, size => 10 }, |
152 |
{ data_type => "varchar", is_nullable => 1, size => 10 }, |
147 |
"billingplace", |
153 |
"billingplace", |
148 |
{ data_type => "varchar", is_nullable => 1, size => 10 }, |
154 |
{ data_type => "varchar", is_nullable => 1, size => 10 }, |
|
|
155 |
"create_items", |
156 |
{ |
157 |
data_type => "enum", |
158 |
extra => { list => ["ordering", "receiving", "cataloguing"] }, |
159 |
is_nullable => 1, |
160 |
}, |
149 |
"branch", |
161 |
"branch", |
150 |
{ data_type => "varchar", is_foreign_key => 1, is_nullable => 1, size => 10 }, |
162 |
{ data_type => "varchar", is_foreign_key => 1, is_nullable => 1, size => 10 }, |
151 |
"is_standing", |
163 |
"is_standing", |
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-08-11 11:47:26 |
301 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:6gRJtrZ6ZXLHjqX281d9Hg |
313 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:XP2aUJa2L5DIgqHKizwFzw |
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 |
- |
|
|