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

(-)a/Koha/Schema/Result/MessageQueue.pm (-2 / +13 lines)
Lines 121-126 Foreign key to the letters table Link Here
121
  data_type: 'mediumtext'
121
  data_type: 'mediumtext'
122
  is_nullable: 1
122
  is_nullable: 1
123
123
124
=head2 delay_until
125
126
  data_type: 'timestamp'
127
  datetime_undef_if_invalid: 1
128
  is_nullable: 1
129
124
=cut
130
=cut
125
131
126
__PACKAGE__->add_columns(
132
__PACKAGE__->add_columns(
Lines 172-177 __PACKAGE__->add_columns( Link Here
172
  { data_type => "mediumtext", is_nullable => 1 },
178
  { data_type => "mediumtext", is_nullable => 1 },
173
  "failure_code",
179
  "failure_code",
174
  { data_type => "mediumtext", is_nullable => 1 },
180
  { data_type => "mediumtext", is_nullable => 1 },
181
  "delay_until",
182
  {
183
    data_type => "timestamp",
184
    datetime_undef_if_invalid => 1,
185
    is_nullable => 1,
186
  },
175
);
187
);
176
188
177
=head1 PRIMARY KEY
189
=head1 PRIMARY KEY
Lines 245-251 __PACKAGE__->belongs_to( Link Here
245
257
246
258
247
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-09-18 14:26:23
259
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-09-18 14:26:23
248
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:eJFHJ3sXu+kLt+uW4ILPIA
260
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:TgFWQ8uaIK/w2B4FOV/atQ
249
261
250
=head2 koha_object_class
262
=head2 koha_object_class
251
263
252
- 

Return to bug 27208