From 5d1c1b049c074dfde5a397df34e4f02a8f9e135d 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 --- Koha/Schema/Result/SmtpServer.pm | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/Koha/Schema/Result/SmtpServer.pm b/Koha/Schema/Result/SmtpServer.pm index 6761c21bb40..d93a83f47c6 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,8 +148,8 @@ __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 } -- 2.30.2