|
Lines 191-196
MARC Organization Code, see http://www.loc.gov/marc/organizations/orgshome.html,
Link Here
|
| 191 |
|
191 |
|
| 192 |
the ability to act as a pickup location |
192 |
the ability to act as a pickup location |
| 193 |
|
193 |
|
|
|
194 |
=head2 public |
| 195 |
|
| 196 |
data_type: 'tinyint' |
| 197 |
default_value: 1 |
| 198 |
is_nullable: 0 |
| 199 |
|
| 200 |
whether this library should show in the opac |
| 201 |
|
| 194 |
=cut |
202 |
=cut |
| 195 |
|
203 |
|
| 196 |
__PACKAGE__->add_columns( |
204 |
__PACKAGE__->add_columns( |
|
Lines 240-245
__PACKAGE__->add_columns(
Link Here
|
| 240 |
{ data_type => "varchar", is_nullable => 1, size => 16 }, |
248 |
{ data_type => "varchar", is_nullable => 1, size => 16 }, |
| 241 |
"pickup_location", |
249 |
"pickup_location", |
| 242 |
{ data_type => "tinyint", default_value => 1, is_nullable => 0 }, |
250 |
{ data_type => "tinyint", default_value => 1, is_nullable => 0 }, |
|
|
251 |
"public", |
| 252 |
{ data_type => "tinyint", default_value => 1, is_nullable => 0 }, |
| 243 |
); |
253 |
); |
| 244 |
|
254 |
|
| 245 |
=head1 PRIMARY KEY |
255 |
=head1 PRIMARY KEY |
|
Lines 887-894
__PACKAGE__->has_many(
Link Here
|
| 887 |
); |
897 |
); |
| 888 |
|
898 |
|
| 889 |
|
899 |
|
| 890 |
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-07-16 07:12:03 |
900 |
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-10-27 13:48:49 |
| 891 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:EZYvCbpv41QSEhHRPVFImA |
901 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:SVuazNjL6+ziK2Uwcc7OwA |
| 892 |
|
902 |
|
| 893 |
__PACKAGE__->add_columns( |
903 |
__PACKAGE__->add_columns( |
| 894 |
'+pickup_location' => { is_boolean => 1 } |
904 |
'+pickup_location' => { is_boolean => 1 } |
| 895 |
- |
|
|