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

(-)a/Koha/Schema/Result/BackgroundJob.pm (-3 / +11 lines)
Lines 70-75 Name of the queue the job is sent to Link Here
70
  data_type: 'longtext'
70
  data_type: 'longtext'
71
  is_nullable: 1
71
  is_nullable: 1
72
72
73
=head2 context
74
75
  data_type: 'longtext'
76
  is_nullable: 1
77
78
JSON-serialized context information for the job
79
73
=head2 enqueued_on
80
=head2 enqueued_on
74
81
75
  data_type: 'datetime'
82
  data_type: 'datetime'
Lines 112-117 __PACKAGE__->add_columns( Link Here
112
  },
119
  },
113
  "data",
120
  "data",
114
  { data_type => "longtext", is_nullable => 1 },
121
  { data_type => "longtext", is_nullable => 1 },
122
  "context",
123
  { data_type => "longtext", is_nullable => 1 },
115
  "enqueued_on",
124
  "enqueued_on",
116
  {
125
  {
117
    data_type => "datetime",
126
    data_type => "datetime",
Lines 145-152 __PACKAGE__->add_columns( Link Here
145
__PACKAGE__->set_primary_key("id");
154
__PACKAGE__->set_primary_key("id");
146
155
147
156
148
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-04-04 17:50:05
157
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-06-30 14:53:39
149
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:EQUgOEtr2ymejd/0ZffJWg
158
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:t95CnrIOd1CBL5qaEez7dQ
150
159
151
160
152
# You can replace this text with custom code or comments, and it will be preserved on regeneration
161
# You can replace this text with custom code or comments, and it will be preserved on regeneration
153
- 

Return to bug 30889