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

(-)a/Koha/Schema/Result/Ticket.pm (-2 / +12 lines)
Lines 63-68 ticket title Link Here
63
63
64
ticket details
64
ticket details
65
65
66
=head2 status
67
68
  data_type: 'varchar'
69
  is_nullable: 1
70
  size: 80
71
72
current status of the ticket
73
66
=head2 resolver_id
74
=head2 resolver_id
67
75
68
  data_type: 'integer'
76
  data_type: 'integer'
Lines 110-115 __PACKAGE__->add_columns( Link Here
110
  { data_type => "text", is_nullable => 0 },
118
  { data_type => "text", is_nullable => 0 },
111
  "body",
119
  "body",
112
  { data_type => "text", is_nullable => 0 },
120
  { data_type => "text", is_nullable => 0 },
121
  "status",
122
  { data_type => "varchar", is_nullable => 1, size => 80 },
113
  "resolver_id",
123
  "resolver_id",
114
  { data_type => "integer", is_foreign_key => 1, is_nullable => 1 },
124
  { data_type => "integer", is_foreign_key => 1, is_nullable => 1 },
115
  "resolved_date",
125
  "resolved_date",
Lines 207-214 __PACKAGE__->has_many( Link Here
207
);
217
);
208
218
209
219
210
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-10-24 21:15:34
220
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-12-22 14:51:40
211
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:0Nm+y1BHJicrpeq3kuU1VA
221
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:lcKWaA+k/0lw5/6JrFhB1A
212
222
213
223
214
# You can replace this text with custom code or comments, and it will be preserved on regeneration
224
# 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