|
Lines 31-39
__PACKAGE__->table("background_jobs");
Link Here
|
| 31 |
|
31 |
|
| 32 |
=head2 status |
32 |
=head2 status |
| 33 |
|
33 |
|
| 34 |
data_type: 'varchar' |
34 |
data_type: 'enum' |
| 35 |
is_nullable: 1 |
35 |
default_value: 'new' |
| 36 |
size: 32 |
36 |
extra: {list => ["new","started","finished","cancelled"]} |
|
|
37 |
is_nullable: 0 |
| 38 |
|
| 39 |
Job status |
| 37 |
|
40 |
|
| 38 |
=head2 progress |
41 |
=head2 progress |
| 39 |
|
42 |
|
|
Lines 94-100
__PACKAGE__->add_columns(
Link Here
|
| 94 |
"id", |
97 |
"id", |
| 95 |
{ data_type => "integer", is_auto_increment => 1, is_nullable => 0 }, |
98 |
{ data_type => "integer", is_auto_increment => 1, is_nullable => 0 }, |
| 96 |
"status", |
99 |
"status", |
| 97 |
{ data_type => "varchar", is_nullable => 1, size => 32 }, |
100 |
{ |
|
|
101 |
data_type => "enum", |
| 102 |
default_value => "new", |
| 103 |
extra => { list => ["new", "started", "finished", "cancelled"] }, |
| 104 |
is_nullable => 0, |
| 105 |
}, |
| 98 |
"progress", |
106 |
"progress", |
| 99 |
{ data_type => "integer", is_nullable => 1 }, |
107 |
{ data_type => "integer", is_nullable => 1 }, |
| 100 |
"size", |
108 |
"size", |
|
Lines 145-152
__PACKAGE__->add_columns(
Link Here
|
| 145 |
__PACKAGE__->set_primary_key("id"); |
153 |
__PACKAGE__->set_primary_key("id"); |
| 146 |
|
154 |
|
| 147 |
|
155 |
|
| 148 |
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-04-04 17:50:05 |
156 |
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-05-24 17:21:26 |
| 149 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:EQUgOEtr2ymejd/0ZffJWg |
157 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:I/YE2oGDGCmwcV+hR8Iamg |
| 150 |
|
158 |
|
| 151 |
|
159 |
|
| 152 |
# You can replace this text with custom code or comments, and it will be preserved on regeneration |
160 |
# You can replace this text with custom code or comments, and it will be preserved on regeneration |
| 153 |
- |
|
|