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

(-)a/Koha/Schema/Result/ActionLog.pm (-3 / +11 lines)
Lines 99-104 the name of the cron script that caused this change Link Here
99
99
100
An optional stack trace enabled by ActionLogsTraceDepth
100
An optional stack trace enabled by ActionLogsTraceDepth
101
101
102
=head2 diff
103
104
  data_type: 'longtext'
105
  is_nullable: 1
106
107
Stores a diff of the changed object
108
102
=cut
109
=cut
103
110
104
__PACKAGE__->add_columns(
111
__PACKAGE__->add_columns(
Lines 127-132 __PACKAGE__->add_columns( Link Here
127
  { data_type => "varchar", is_nullable => 1, size => 255 },
134
  { data_type => "varchar", is_nullable => 1, size => 255 },
128
  "trace",
135
  "trace",
129
  { data_type => "text", is_nullable => 1 },
136
  { data_type => "text", is_nullable => 1 },
137
  "diff",
138
  { data_type => "longtext", is_nullable => 1 },
130
);
139
);
131
140
132
=head1 PRIMARY KEY
141
=head1 PRIMARY KEY
Lines 142-149 __PACKAGE__->add_columns( Link Here
142
__PACKAGE__->set_primary_key("action_id");
151
__PACKAGE__->set_primary_key("action_id");
143
152
144
153
145
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-03-14 11:43:23
154
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-07-18 11:04:28
146
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Pk40bYslXRv5opmzBBVs3w
155
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:k07I1HWpWKg0K4+JvQKAYA
147
156
148
157
149
# You can replace this text with custom code or comments, and it will be preserved on regeneration
158
# You can replace this text with custom code or comments, and it will be preserved on regeneration
150
- 

Return to bug 25159