Lines 56-61
__PACKAGE__->table("background_jobs");
Link Here
|
56 |
is_nullable: 1 |
56 |
is_nullable: 1 |
57 |
size: 64 |
57 |
size: 64 |
58 |
|
58 |
|
|
|
59 |
=head2 queue |
60 |
|
61 |
data_type: 'varchar' |
62 |
default_value: 'default' |
63 |
is_nullable: 0 |
64 |
size: 191 |
65 |
|
66 |
Name of the queue the job is sent to |
67 |
|
59 |
=head2 data |
68 |
=head2 data |
60 |
|
69 |
|
61 |
data_type: 'longtext' |
70 |
data_type: 'longtext' |
Lines 94-99
__PACKAGE__->add_columns(
Link Here
|
94 |
{ data_type => "integer", is_nullable => 1 }, |
103 |
{ data_type => "integer", is_nullable => 1 }, |
95 |
"type", |
104 |
"type", |
96 |
{ data_type => "varchar", is_nullable => 1, size => 64 }, |
105 |
{ data_type => "varchar", is_nullable => 1, size => 64 }, |
|
|
106 |
"queue", |
107 |
{ |
108 |
data_type => "varchar", |
109 |
default_value => "default", |
110 |
is_nullable => 0, |
111 |
size => 191, |
112 |
}, |
97 |
"data", |
113 |
"data", |
98 |
{ data_type => "longtext", is_nullable => 1 }, |
114 |
{ data_type => "longtext", is_nullable => 1 }, |
99 |
"enqueued_on", |
115 |
"enqueued_on", |
Lines 129-136
__PACKAGE__->add_columns(
Link Here
|
129 |
__PACKAGE__->set_primary_key("id"); |
145 |
__PACKAGE__->set_primary_key("id"); |
130 |
|
146 |
|
131 |
|
147 |
|
132 |
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-11-05 11:12:33 |
148 |
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-04-04 17:50:05 |
133 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:JciFnOzpDW3lZlCfEVJUnQ |
149 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:EQUgOEtr2ymejd/0ZffJWg |
134 |
|
150 |
|
135 |
|
151 |
|
136 |
# You can replace this text with custom code or comments, and it will be preserved on regeneration |
152 |
# You can replace this text with custom code or comments, and it will be preserved on regeneration |
137 |
- |
|
|