View | Details | Raw Unified | Return to bug 30182
Collapse All | Expand All

(-)a/Koha/Schema/Result/BackgroundJob.pm (-7 / +14 lines)
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 85-91 __PACKAGE__->add_columns( Link Here
85
  "id",
88
  "id",
86
  { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
89
  { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
87
  "status",
90
  "status",
88
  { data_type => "varchar", is_nullable => 1, size => 32 },
91
  {
92
    data_type => "enum",
93
    default_value => "new",
94
    extra => { list => ["new", "started", "finished", "cancelled"] },
95
    is_nullable => 0,
96
  },
89
  "progress",
97
  "progress",
90
  { data_type => "integer", is_nullable => 1 },
98
  { data_type => "integer", is_nullable => 1 },
91
  "size",
99
  "size",
Lines 129-136 __PACKAGE__->add_columns( Link Here
129
__PACKAGE__->set_primary_key("id");
137
__PACKAGE__->set_primary_key("id");
130
138
131
139
132
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-11-05 11:12:33
140
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-02-25 10:54:57
133
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:JciFnOzpDW3lZlCfEVJUnQ
141
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:dkkI1ZA5pbKOo4LoD3vt7w
134
142
135
143
136
# You can replace this text with custom code or comments, and it will be preserved on regeneration
144
# You can replace this text with custom code or comments, and it will be preserved on regeneration
137
- 

Return to bug 30182