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

(-)a/Koha/Schema/Result/ActionLog.pm (-1 / +10 lines)
Lines 106-111 An optional stack trace enabled by ActionLogsTraceDepth Link Here
106
106
107
Stores a diff of the changed object
107
Stores a diff of the changed object
108
108
109
=head2 ip_address
110
111
  data_type: 'varchar'
112
  is_nullable: 1
113
  size: 45
114
115
IP address of the client that performed the action
116
109
=cut
117
=cut
110
118
111
__PACKAGE__->add_columns(
119
__PACKAGE__->add_columns(
Lines 136-141 __PACKAGE__->add_columns( Link Here
136
  { data_type => "text", is_nullable => 1 },
144
  { data_type => "text", is_nullable => 1 },
137
  "diff",
145
  "diff",
138
  { data_type => "longtext", is_nullable => 1 },
146
  { data_type => "longtext", is_nullable => 1 },
147
  "ip_address",
148
  { data_type => "varchar", is_nullable => 1, size => 45 },
139
);
149
);
140
150
141
=head1 PRIMARY KEY
151
=head1 PRIMARY KEY
142
- 

Return to bug 41310