Lines 41-46
__PACKAGE__->table("patron_lists");
Link Here
|
41 |
is_foreign_key: 1 |
41 |
is_foreign_key: 1 |
42 |
is_nullable: 0 |
42 |
is_nullable: 0 |
43 |
|
43 |
|
|
|
44 |
=head2 shared |
45 |
|
46 |
data_type: 'tinyint' |
47 |
default_value: 0 |
48 |
is_nullable: 1 |
49 |
|
44 |
=cut |
50 |
=cut |
45 |
|
51 |
|
46 |
__PACKAGE__->add_columns( |
52 |
__PACKAGE__->add_columns( |
Lines 50-55
__PACKAGE__->add_columns(
Link Here
|
50 |
{ data_type => "varchar", is_nullable => 0, size => 255 }, |
56 |
{ data_type => "varchar", is_nullable => 0, size => 255 }, |
51 |
"owner", |
57 |
"owner", |
52 |
{ data_type => "integer", is_foreign_key => 1, is_nullable => 0 }, |
58 |
{ data_type => "integer", is_foreign_key => 1, is_nullable => 0 }, |
|
|
59 |
"shared", |
60 |
{ data_type => "tinyint", default_value => 0, is_nullable => 1 }, |
53 |
); |
61 |
); |
54 |
|
62 |
|
55 |
=head1 PRIMARY KEY |
63 |
=head1 PRIMARY KEY |
Lines 97-104
__PACKAGE__->has_many(
Link Here
|
97 |
); |
105 |
); |
98 |
|
106 |
|
99 |
|
107 |
|
100 |
# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 21:34:14 |
108 |
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-06-07 10:50:32 |
101 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:iWNlXRM+XvkJMlnu4F0xKw |
109 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:8AfbIJuM+GHTRa0HeK1HbQ |
102 |
|
110 |
|
103 |
|
111 |
|
104 |
# You can replace this text with custom content, and it will be preserved on regeneration |
112 |
# You can replace this text with custom content, and it will be preserved on regeneration |
105 |
- |
|
|