|
Lines 82-87
__PACKAGE__->table("issues");
Link Here
|
| 82 |
default_value: 0 |
82 |
default_value: 0 |
| 83 |
is_nullable: 1 |
83 |
is_nullable: 1 |
| 84 |
|
84 |
|
|
|
85 |
=head2 auto_renew_error |
| 86 |
|
| 87 |
data_type: 'varchar' |
| 88 |
is_nullable: 1 |
| 89 |
size: 16 |
| 90 |
|
| 85 |
=head2 timestamp |
91 |
=head2 timestamp |
| 86 |
|
92 |
|
| 87 |
data_type: 'timestamp' |
93 |
data_type: 'timestamp' |
|
Lines 136-141
__PACKAGE__->add_columns(
Link Here
|
| 136 |
{ data_type => "tinyint", is_nullable => 1 }, |
142 |
{ data_type => "tinyint", is_nullable => 1 }, |
| 137 |
"auto_renew", |
143 |
"auto_renew", |
| 138 |
{ data_type => "tinyint", default_value => 0, is_nullable => 1 }, |
144 |
{ data_type => "tinyint", default_value => 0, is_nullable => 1 }, |
|
|
145 |
"auto_renew_error", |
| 146 |
{ data_type => "varchar", is_nullable => 1, size => 16 }, |
| 139 |
"timestamp", |
147 |
"timestamp", |
| 140 |
{ |
148 |
{ |
| 141 |
data_type => "timestamp", |
149 |
data_type => "timestamp", |
|
Lines 222-229
__PACKAGE__->belongs_to(
Link Here
|
| 222 |
); |
230 |
); |
| 223 |
|
231 |
|
| 224 |
|
232 |
|
| 225 |
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-11-04 12:00:58 |
233 |
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-01-29 15:31:46 |
| 226 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:kREecsHr6wZPiokS946BHw |
234 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:/T5nt8qhlT6ocUG6A9JNIw |
| 227 |
|
235 |
|
| 228 |
__PACKAGE__->belongs_to( |
236 |
__PACKAGE__->belongs_to( |
| 229 |
"borrower", |
237 |
"borrower", |
| 230 |
- |
|
|