Lines 93-98
__PACKAGE__->table("message_queue");
Link Here
|
93 |
data_type: 'longtext' |
93 |
data_type: 'longtext' |
94 |
is_nullable: 1 |
94 |
is_nullable: 1 |
95 |
|
95 |
|
|
|
96 |
=head2 reply_address |
97 |
|
98 |
data_type: 'longtext' |
99 |
is_nullable: 1 |
100 |
|
96 |
=head2 content_type |
101 |
=head2 content_type |
97 |
|
102 |
|
98 |
data_type: 'mediumtext' |
103 |
data_type: 'mediumtext' |
Lines 139-144
__PACKAGE__->add_columns(
Link Here
|
139 |
{ data_type => "longtext", is_nullable => 1 }, |
144 |
{ data_type => "longtext", is_nullable => 1 }, |
140 |
"from_address", |
145 |
"from_address", |
141 |
{ data_type => "longtext", is_nullable => 1 }, |
146 |
{ data_type => "longtext", is_nullable => 1 }, |
|
|
147 |
"reply_address", |
148 |
{ data_type => "longtext", is_nullable => 1 }, |
142 |
"content_type", |
149 |
"content_type", |
143 |
{ data_type => "mediumtext", is_nullable => 1 }, |
150 |
{ data_type => "mediumtext", is_nullable => 1 }, |
144 |
); |
151 |
); |
Lines 193-200
__PACKAGE__->belongs_to(
Link Here
|
193 |
); |
200 |
); |
194 |
|
201 |
|
195 |
|
202 |
|
196 |
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-02-05 14:26:34 |
203 |
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-02-25 09:43:49 |
197 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:fSWIVVJGliKtqQaNbmZKYQ |
204 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:9M95gvHiqvdGdahHEHaFaA |
198 |
|
205 |
|
199 |
sub koha_object_class { |
206 |
sub koha_object_class { |
200 |
'Koha::Notice::Message'; |
207 |
'Koha::Notice::Message'; |
201 |
- |
|
|