Lines 97-102
__PACKAGE__->table("suggestions");
Link Here
|
97 |
is_nullable: 0 |
97 |
is_nullable: 0 |
98 |
size: 10 |
98 |
size: 10 |
99 |
|
99 |
|
|
|
100 |
=head2 archived |
101 |
|
102 |
data_type: 'integer' |
103 |
default_value: 0 |
104 |
is_nullable: 0 |
105 |
|
100 |
=head2 note |
106 |
=head2 note |
101 |
|
107 |
|
102 |
data_type: 'longtext' |
108 |
data_type: 'longtext' |
Lines 252-257
__PACKAGE__->add_columns(
Link Here
|
252 |
is_nullable => 0, |
258 |
is_nullable => 0, |
253 |
size => 10, |
259 |
size => 10, |
254 |
}, |
260 |
}, |
|
|
261 |
"archived", |
262 |
{ data_type => "integer", default_value => 0, is_nullable => 0 }, |
255 |
"note", |
263 |
"note", |
256 |
{ data_type => "longtext", is_nullable => 1 }, |
264 |
{ data_type => "longtext", is_nullable => 1 }, |
257 |
"author", |
265 |
"author", |
Lines 476-483
__PACKAGE__->belongs_to(
Link Here
|
476 |
); |
484 |
); |
477 |
|
485 |
|
478 |
|
486 |
|
479 |
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-11-14 15:44:38 |
487 |
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-11-14 15:51:55 |
480 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:qZuiiZgd+ry97OSngYckSA |
488 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:VMqZoZ/sYmLJdsVamvcDnw |
481 |
|
489 |
|
482 |
__PACKAGE__->add_columns( |
490 |
__PACKAGE__->add_columns( |
483 |
'+archived' => { is_boolean => 1 }, |
491 |
'+archived' => { is_boolean => 1 }, |
484 |
- |
|
|