|
Lines 95-104
__PACKAGE__->table("old_issues");
Link Here
|
| 95 |
datetime_undef_if_invalid: 1 |
95 |
datetime_undef_if_invalid: 1 |
| 96 |
is_nullable: 1 |
96 |
is_nullable: 1 |
| 97 |
|
97 |
|
| 98 |
=head2 onsite_checkout |
98 |
=head2 checkout_type |
| 99 |
|
99 |
|
| 100 |
data_type: 'integer' |
100 |
data_type: 'enum' |
| 101 |
default_value: 0 |
101 |
default_value: 'CHECKOUT' |
|
|
102 |
extra: {list => ["CHECKOUT","ONSITE"]} |
| 102 |
is_nullable: 0 |
103 |
is_nullable: 0 |
| 103 |
|
104 |
|
| 104 |
=head2 note |
105 |
=head2 note |
|
Lines 165-172
__PACKAGE__->add_columns(
Link Here
|
| 165 |
datetime_undef_if_invalid => 1, |
166 |
datetime_undef_if_invalid => 1, |
| 166 |
is_nullable => 1, |
167 |
is_nullable => 1, |
| 167 |
}, |
168 |
}, |
| 168 |
"onsite_checkout", |
169 |
"checkout_type", |
| 169 |
{ data_type => "integer", default_value => 0, is_nullable => 0 }, |
170 |
{ |
|
|
171 |
data_type => "enum", |
| 172 |
default_value => "CHECKOUT", |
| 173 |
extra => { list => ["CHECKOUT", "ONSITE"] }, |
| 174 |
is_nullable => 0, |
| 175 |
}, |
| 170 |
"note", |
176 |
"note", |
| 171 |
{ data_type => "longtext", is_nullable => 1 }, |
177 |
{ data_type => "longtext", is_nullable => 1 }, |
| 172 |
"notedate", |
178 |
"notedate", |
|
Lines 234-245
__PACKAGE__->belongs_to(
Link Here
|
| 234 |
); |
240 |
); |
| 235 |
|
241 |
|
| 236 |
|
242 |
|
| 237 |
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-04-10 19:55:44 |
243 |
# Created by DBIx::Class::Schema::Loader v0.07048 @ 2020-04-09 19:47:02 |
| 238 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:E2N2paWcCHg916100ry+2A |
244 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:J7jzh/kOsynQr52uSGxQ/A |
| 239 |
|
245 |
|
| 240 |
__PACKAGE__->add_columns( |
246 |
__PACKAGE__->add_columns( |
| 241 |
'+auto_renew' => { is_boolean => 1 }, |
247 |
'+auto_renew' => { is_boolean => 1 } |
| 242 |
'+onsite_checkout' => { is_boolean => 1 } |
|
|
| 243 |
); |
248 |
); |
| 244 |
|
249 |
|
| 245 |
__PACKAGE__->belongs_to( |
250 |
__PACKAGE__->belongs_to( |
| 246 |
- |
|
|