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

(-)a/Koha/Schema/Result/Statistic.pm (-3 / +12 lines)
Lines 108-113 foreign key from the items table, links transaction to a specific collection cod Link Here
108
108
109
foreign key from the borrowers table, links transaction to a specific borrower category
109
foreign key from the borrowers table, links transaction to a specific borrower category
110
110
111
=head2 interface
112
113
  data_type: 'varchar'
114
  is_nullable: 1
115
  size: 30
116
117
the context this action was taken in
118
111
=cut
119
=cut
112
120
113
__PACKAGE__->add_columns(
121
__PACKAGE__->add_columns(
Lines 137-147 __PACKAGE__->add_columns( Link Here
137
  { data_type => "varchar", is_nullable => 1, size => 80 },
145
  { data_type => "varchar", is_nullable => 1, size => 80 },
138
  "categorycode",
146
  "categorycode",
139
  { data_type => "varchar", is_nullable => 1, size => 10 },
147
  { data_type => "varchar", is_nullable => 1, size => 10 },
148
  "interface",
149
  { data_type => "varchar", is_nullable => 1, size => 30 },
140
);
150
);
141
151
142
152
143
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-09-22 12:36:29
153
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-04-30 21:33:05
144
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:q1L7HqO/OkyzmiUcO3c0gg
154
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:LlHdt2FO2c762JRF0zV72A
145
155
146
156
147
# You can replace this text with custom content, and it will be preserved on regeneration
157
# You can replace this text with custom content, and it will be preserved on regeneration
148
- 

Return to bug 30928