From df84f4a5e703e8fbb4593eb6955bcc66b80248c2 Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Thu, 30 Nov 2023 14:58:11 -0300 Subject: [PATCH] Bug 34587: DBIC schema Signed-off-by: Tomas Cohen Arazi --- Koha/Schema/Result/ErmCounterFile.pm | 8 ++++---- Koha/Schema/Result/ErmCounterLog.pm | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Koha/Schema/Result/ErmCounterFile.pm b/Koha/Schema/Result/ErmCounterFile.pm index 6a0558d9bf..f9564b3e83 100644 --- a/Koha/Schema/Result/ErmCounterFile.pm +++ b/Koha/Schema/Result/ErmCounterFile.pm @@ -67,7 +67,7 @@ content of the counter file data_type: 'timestamp' datetime_undef_if_invalid: 1 default_value: current_timestamp - is_nullable: 0 + is_nullable: 1 counter file upload date @@ -89,7 +89,7 @@ __PACKAGE__->add_columns( data_type => "timestamp", datetime_undef_if_invalid => 1, default_value => \"current_timestamp", - is_nullable => 0, + is_nullable => 1, }, ); @@ -143,8 +143,8 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-03-15 09:43:08 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:+cy3yVUyED7b16dNoC6dSQ +# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-11-30 17:43:57 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:PnXyJtZQBhfxPPNnkyxJ8Q sub koha_object_class { diff --git a/Koha/Schema/Result/ErmCounterLog.pm b/Koha/Schema/Result/ErmCounterLog.pm index aa971fa037..4927a96aea 100644 --- a/Koha/Schema/Result/ErmCounterLog.pm +++ b/Koha/Schema/Result/ErmCounterLog.pm @@ -60,7 +60,7 @@ foreign key to erm_usage_data_providers data_type: 'timestamp' datetime_undef_if_invalid: 1 default_value: current_timestamp - is_nullable: 0 + is_nullable: 1 counter file import date @@ -95,7 +95,7 @@ __PACKAGE__->add_columns( data_type => "timestamp", datetime_undef_if_invalid => 1, default_value => \"current_timestamp", - is_nullable => 0, + is_nullable => 1, }, "filename", { data_type => "varchar", is_nullable => 1, size => 80 }, @@ -178,8 +178,8 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-10-11 10:09:06 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:5tmoa4Our5qmolU0OWXjcQ +# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-11-30 17:43:57 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:fEB6HZDsjTTJVWlnW+y/Ng sub koha_object_class { -- 2.39.5