|
Lines 96-101
Foreign key to the letters table
Link Here
|
| 96 |
data_type: 'longtext' |
96 |
data_type: 'longtext' |
| 97 |
is_nullable: 1 |
97 |
is_nullable: 1 |
| 98 |
|
98 |
|
|
|
99 |
=head2 cc_address |
| 100 |
|
| 101 |
data_type: 'longtext' |
| 102 |
is_nullable: 1 |
| 103 |
|
| 99 |
=head2 from_address |
104 |
=head2 from_address |
| 100 |
|
105 |
|
| 101 |
data_type: 'longtext' |
106 |
data_type: 'longtext' |
|
Lines 157-162
__PACKAGE__->add_columns(
Link Here
|
| 157 |
}, |
162 |
}, |
| 158 |
"to_address", |
163 |
"to_address", |
| 159 |
{ data_type => "longtext", is_nullable => 1 }, |
164 |
{ data_type => "longtext", is_nullable => 1 }, |
|
|
165 |
"cc_address", |
| 166 |
{ data_type => "longtext", is_nullable => 1 }, |
| 160 |
"from_address", |
167 |
"from_address", |
| 161 |
{ data_type => "longtext", is_nullable => 1 }, |
168 |
{ data_type => "longtext", is_nullable => 1 }, |
| 162 |
"reply_address", |
169 |
"reply_address", |
|
Lines 237-244
__PACKAGE__->belongs_to(
Link Here
|
| 237 |
); |
244 |
); |
| 238 |
|
245 |
|
| 239 |
|
246 |
|
| 240 |
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-10-18 12:50:14 |
247 |
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-09-18 14:26:23 |
| 241 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:PX9JzZw0v134xuHqNbB0cA |
248 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:eJFHJ3sXu+kLt+uW4ILPIA |
| 242 |
|
249 |
|
| 243 |
sub koha_object_class { |
250 |
sub koha_object_class { |
| 244 |
'Koha::Notice::Message'; |
251 |
'Koha::Notice::Message'; |
| 245 |
- |
|
|