|
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-21 16:04:39 |
| 148 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:8YG3jhlqbHWptc28pvBmrg |
158 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:mZE5yetnaH+RbAWJLdM56Q |
| 149 |
|
159 |
|
| 150 |
__PACKAGE__->add_columns( '+public' => { is_boolean => 1 }, ); |
160 |
__PACKAGE__->add_columns( '+public' => { is_boolean => 1 }, ); |
| 151 |
|
161 |
|
| 152 |
- |
|
|