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

(-)a/Koha/Schema/Result/Ticket.pm (-2 / +12 lines)
Lines 72-77 ticket title Link Here
72
72
73
ticket details
73
ticket details
74
74
75
=head2 status
76
77
  data_type: 'varchar'
78
  is_nullable: 1
79
  size: 80
80
81
current status of the ticket
82
75
=head2 resolver_id
83
=head2 resolver_id
76
84
77
  data_type: 'integer'
85
  data_type: 'integer'
Lines 126-131 __PACKAGE__->add_columns( Link Here
126
  { data_type => "text", is_nullable => 0 },
134
  { data_type => "text", is_nullable => 0 },
127
  "body",
135
  "body",
128
  { data_type => "text", is_nullable => 0 },
136
  { data_type => "text", is_nullable => 0 },
137
  "status",
138
  { data_type => "varchar", is_nullable => 1, size => 80 },
129
  "resolver_id",
139
  "resolver_id",
130
  { data_type => "integer", is_foreign_key => 1, is_nullable => 1 },
140
  { data_type => "integer", is_foreign_key => 1, is_nullable => 1 },
131
  "resolved_date",
141
  "resolved_date",
Lines 223-230 __PACKAGE__->has_many( Link Here
223
);
233
);
224
234
225
235
226
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2024-04-21 16:39:22
236
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-12-22 14:51:40
227
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:A0jSRniIlOf/H5zB6PGH3g
237
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:lcKWaA+k/0lw5/6JrFhB1A
228
238
229
239
230
# You can replace this text with custom code or comments, and it will be preserved on regeneration
240
# You can replace this text with custom code or comments, and it will be preserved on regeneration
(-)a/Koha/Schema/Result/TicketUpdate.pm (-3 / +12 lines)
Lines 72-77 date and time this update was logged Link Here
72
72
73
update message content
73
update message content
74
74
75
=head2 status
76
77
  data_type: 'varchar'
78
  is_nullable: 1
79
  size: 80
80
81
status of ticket at this update
82
75
=cut
83
=cut
76
84
77
__PACKAGE__->add_columns(
85
__PACKAGE__->add_columns(
Lines 97-102 __PACKAGE__->add_columns( Link Here
97
  },
105
  },
98
  "message",
106
  "message",
99
  { data_type => "text", is_nullable => 0 },
107
  { data_type => "text", is_nullable => 0 },
108
  "status",
109
  { data_type => "varchar", is_nullable => 1, size => 80 },
100
);
110
);
101
111
102
=head1 PRIMARY KEY
112
=head1 PRIMARY KEY
Lines 144-151 __PACKAGE__->belongs_to( Link Here
144
);
154
);
145
155
146
156
147
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-10-24 18:31:28
157
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-12-22 14:51:40
148
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:8YG3jhlqbHWptc28pvBmrg
158
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:5fRHoeJ8uIAnOmxll7BsnA
149
159
150
__PACKAGE__->add_columns( '+public' => { is_boolean => 1 }, );
160
__PACKAGE__->add_columns( '+public' => { is_boolean => 1 }, );
151
161
152
- 

Return to bug 35628