Main Koha release repository https://koha-community.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

158 lines
2.5 KiB

use utf8;
package Koha::Schema::Result::SmtpServer;
# Created by DBIx::Class::Schema::Loader
# DO NOT MODIFY THE FIRST PART OF THIS FILE
=head1 NAME
Koha::Schema::Result::SmtpServer
=cut
use strict;
use warnings;
use base 'DBIx::Class::Core';
=head1 TABLE: C<smtp_servers>
=cut
__PACKAGE__->table("smtp_servers");
=head1 ACCESSORS
=head2 id
data_type: 'integer'
is_auto_increment: 1
is_nullable: 0
=head2 name
data_type: 'varchar'
is_nullable: 0
size: 80
=head2 host
data_type: 'varchar'
default_value: 'localhost'
is_nullable: 0
size: 80
=head2 port
data_type: 'integer'
default_value: 25
is_nullable: 0
=head2 timeout
data_type: 'integer'
default_value: 120
is_nullable: 0
=head2 ssl_mode
data_type: 'enum'
extra: {list => ["disabled","ssl","starttls"]}
is_nullable: 0
=head2 user_name
data_type: 'varchar'
is_nullable: 1
size: 80
=head2 password
data_type: 'varchar'
is_nullable: 1
size: 80
=head2 debug
data_type: 'tinyint'
default_value: 0
is_nullable: 0
=cut
__PACKAGE__->add_columns(
"id",
{ data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
"name",
{ data_type => "varchar", is_nullable => 0, size => 80 },
"host",
{
data_type => "varchar",
default_value => "localhost",
is_nullable => 0,
size => 80,
},
"port",
{ data_type => "integer", default_value => 25, is_nullable => 0 },
"timeout",
{ data_type => "integer", default_value => 120, is_nullable => 0 },
"ssl_mode",
{
data_type => "enum",
extra => { list => ["disabled", "ssl", "starttls"] },
is_nullable => 0,
},
"user_name",
{ data_type => "varchar", is_nullable => 1, size => 80 },
"password",
{ data_type => "varchar", is_nullable => 1, size => 80 },
"debug",
{ data_type => "tinyint", default_value => 0, is_nullable => 0 },
);
=head1 PRIMARY KEY
=over 4
=item * L</id>
=back
=cut
__PACKAGE__->set_primary_key("id");
=head1 RELATIONS
=head2 library_smtp_servers
Type: has_many
Related object: L<Koha::Schema::Result::LibrarySmtpServer>
=cut
__PACKAGE__->has_many(
"library_smtp_servers",
"Koha::Schema::Result::LibrarySmtpServer",
{ "foreign.smtp_server_id" => "self.id" },
{ cascade_copy => 0, cascade_delete => 0 },
);
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2020-08-21 18:02:08
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:OpyR6JhcwWKQP2+hyaLiww
__PACKAGE__->add_columns(
'+debug' => { is_boolean => 1 }
);
sub koha_objects_class {
'Koha::SMTP::Servers';
}
sub koha_object_class {
'Koha::SMTP::Server';
}
1;