Lines 78-83
__PACKAGE__->table("smtp_servers");
Link Here
|
78 |
default_value: 0 |
78 |
default_value: 0 |
79 |
is_nullable: 0 |
79 |
is_nullable: 0 |
80 |
|
80 |
|
|
|
81 |
=head2 is_default |
82 |
|
83 |
data_type: 'tinyint' |
84 |
default_value: 0 |
85 |
is_nullable: 0 |
86 |
|
81 |
=cut |
87 |
=cut |
82 |
|
88 |
|
83 |
__PACKAGE__->add_columns( |
89 |
__PACKAGE__->add_columns( |
Lines 108-113
__PACKAGE__->add_columns(
Link Here
|
108 |
{ data_type => "varchar", is_nullable => 1, size => 80 }, |
114 |
{ data_type => "varchar", is_nullable => 1, size => 80 }, |
109 |
"debug", |
115 |
"debug", |
110 |
{ data_type => "tinyint", default_value => 0, is_nullable => 0 }, |
116 |
{ data_type => "tinyint", default_value => 0, is_nullable => 0 }, |
|
|
117 |
"is_default", |
118 |
{ data_type => "tinyint", default_value => 0, is_nullable => 0 }, |
111 |
); |
119 |
); |
112 |
|
120 |
|
113 |
=head1 PRIMARY KEY |
121 |
=head1 PRIMARY KEY |
Lines 140-150
__PACKAGE__->has_many(
Link Here
|
140 |
); |
148 |
); |
141 |
|
149 |
|
142 |
|
150 |
|
143 |
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2020-08-21 18:02:08 |
151 |
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-01-20 18:18:33 |
144 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:OpyR6JhcwWKQP2+hyaLiww |
152 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:D+EewRQjaYPN3VEOAt8Tkg |
145 |
|
153 |
|
146 |
__PACKAGE__->add_columns( |
154 |
__PACKAGE__->add_columns( |
147 |
'+debug' => { is_boolean => 1 } |
155 |
'+debug' => { is_boolean => 1 }, |
|
|
156 |
'+is_default' => { is_boolean => 1 }, |
148 |
); |
157 |
); |
149 |
|
158 |
|
150 |
sub koha_objects_class { |
159 |
sub koha_objects_class { |
151 |
- |
|
|