Lines 51-56
__PACKAGE__->table("default_circ_rules");
Link Here
|
51 |
is_nullable: 1 |
51 |
is_nullable: 1 |
52 |
size: 15 |
52 |
size: 15 |
53 |
|
53 |
|
|
|
54 |
=head2 renew_lost_allowed |
55 |
|
56 |
data_type: 'tinyint' |
57 |
default_value: 1 |
58 |
is_nullable: 0 |
59 |
|
60 |
=head2 renew_lost_found |
61 |
|
62 |
data_type: 'tinyint' |
63 |
default_value: 0 |
64 |
is_nullable: 0 |
65 |
|
54 |
=cut |
66 |
=cut |
55 |
|
67 |
|
56 |
__PACKAGE__->add_columns( |
68 |
__PACKAGE__->add_columns( |
Lines 69-74
__PACKAGE__->add_columns(
Link Here
|
69 |
{ data_type => "integer", is_nullable => 1 }, |
81 |
{ data_type => "integer", is_nullable => 1 }, |
70 |
"returnbranch", |
82 |
"returnbranch", |
71 |
{ data_type => "varchar", is_nullable => 1, size => 15 }, |
83 |
{ data_type => "varchar", is_nullable => 1, size => 15 }, |
|
|
84 |
"renew_lost_allowed", |
85 |
{ data_type => "tinyint", default_value => 1, is_nullable => 0 }, |
86 |
"renew_lost_found", |
87 |
{ data_type => "tinyint", default_value => 0, is_nullable => 0 }, |
72 |
); |
88 |
); |
73 |
|
89 |
|
74 |
=head1 PRIMARY KEY |
90 |
=head1 PRIMARY KEY |
Lines 84-91
__PACKAGE__->add_columns(
Link Here
|
84 |
__PACKAGE__->set_primary_key("singleton"); |
100 |
__PACKAGE__->set_primary_key("singleton"); |
85 |
|
101 |
|
86 |
|
102 |
|
87 |
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2015-05-13 17:48:39 |
103 |
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-03-14 12:54:49 |
88 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:TLEpv+H3v7P3psVl+WMA0Q |
104 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:jBmWd6qSwc8R6XrBv/PFVg |
89 |
|
105 |
|
90 |
|
106 |
|
91 |
# You can replace this text with custom content, and it will be preserved on regeneration |
107 |
# You can replace this text with custom content, and it will be preserved on regeneration |
92 |
- |
|
|