From c7c9b15275920cddb75999ce929a2c2ae72f8b73 Mon Sep 17 00:00:00 2001 From: Kyle Hall Date: Thu, 20 Jan 2022 14:25:39 -0500 Subject: [PATCH] Bug 27424: Update schema file Signed-off-by: Tomas Cohen Arazi --- Koha/Schema/Result/SmtpServer.pm | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/Koha/Schema/Result/SmtpServer.pm b/Koha/Schema/Result/SmtpServer.pm index 6761c21bb4..43906a102a 100644 --- a/Koha/Schema/Result/SmtpServer.pm +++ b/Koha/Schema/Result/SmtpServer.pm @@ -78,6 +78,12 @@ __PACKAGE__->table("smtp_servers"); default_value: 0 is_nullable: 0 +=head2 is_default + + data_type: 'tinyint' + default_value: 0 + is_nullable: 0 + =cut __PACKAGE__->add_columns( @@ -108,6 +114,8 @@ __PACKAGE__->add_columns( { data_type => "varchar", is_nullable => 1, size => 80 }, "debug", { data_type => "tinyint", default_value => 0, is_nullable => 0 }, + "is_default", + { data_type => "tinyint", default_value => 0, is_nullable => 0 }, ); =head1 PRIMARY KEY @@ -140,11 +148,12 @@ __PACKAGE__->has_many( ); -# Created by DBIx::Class::Schema::Loader v0.07049 @ 2020-08-21 18:02:08 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:OpyR6JhcwWKQP2+hyaLiww +# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-01-20 18:18:33 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:D+EewRQjaYPN3VEOAt8Tkg __PACKAGE__->add_columns( - '+debug' => { is_boolean => 1 } + '+debug' => { is_boolean => 1 }, + '+is_default' => { is_boolean => 1 }, ); sub koha_objects_class { -- 2.32.0