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

(-)a/Koha/Schema/Result/ActionLog.pm (-3 / +11 lines)
Lines 92-97 the context this action was taken in Link Here
92
92
93
the name of the cron script that caused this change
93
the name of the cron script that caused this change
94
94
95
=head2 trace
96
97
  data_type: 'text'
98
  is_nullable: 1
99
100
An optional stack trace enabled by ActionLogsTraceDepth
101
95
=cut
102
=cut
96
103
97
__PACKAGE__->add_columns(
104
__PACKAGE__->add_columns(
Lines 118-123 __PACKAGE__->add_columns( Link Here
118
  { data_type => "varchar", is_nullable => 1, size => 30 },
125
  { data_type => "varchar", is_nullable => 1, size => 30 },
119
  "script",
126
  "script",
120
  { data_type => "varchar", is_nullable => 1, size => 255 },
127
  { data_type => "varchar", is_nullable => 1, size => 255 },
128
  "trace",
129
  { data_type => "text", is_nullable => 1 },
121
);
130
);
122
131
123
=head1 PRIMARY KEY
132
=head1 PRIMARY KEY
Lines 133-140 __PACKAGE__->add_columns( Link Here
133
__PACKAGE__->set_primary_key("action_id");
142
__PACKAGE__->set_primary_key("action_id");
134
143
135
144
136
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-08-01 12:59:53
145
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-12-21 14:47:35
137
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Hqt9IBtfv2ZFiXWx10b8xQ
146
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:DcGsVb6W+CC8Qn8jeJpU8Q
138
147
139
148
140
# You can replace this text with custom code or comments, and it will be preserved on regeneration
149
# You can replace this text with custom code or comments, and it will be preserved on regeneration
141
- 

Return to bug 32057