https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=37592
Katrin Fischer <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |additional_work_needed --- Comment #19 from Katrin Fischer <[email protected]> --- I am currently in the process of making sure that an updated installation will have the same database structure as a new installation. Here something seems to have gone wrong: +++ b/Koha/Schema/Result/Booking.pm @@ -87,7 +87,7 @@ the end date of the booking data_type: 'timestamp' datetime_undef_if_invalid: 1 default_value: current_timestamp - is_nullable: 0 + is_nullable: 1 the timestamp for when a booking was created @@ -96,7 +96,7 @@ the timestamp for when a booking was created data_type: 'timestamp' datetime_undef_if_invalid: 1 default_value: current_timestamp - is_nullable: 0 + is_nullable: 1 the timestamp for when a booking has been updated @@ -157,14 +157,14 @@ __PACKAGE__->add_columns( data_type => "timestamp", datetime_undef_if_invalid => 1, default_value => \"current_timestamp", - is_nullable => 0, + is_nullable => 1, }, "modification_date", { data_type => "timestamp", datetime_undef_if_invalid => 1, default_value => \"current_timestamp", - is_nullable => 0, + is_nullable => 1, }, "status", { @@ -257,8 +257,8 @@ __PACKAGE__->belongs_to( ); -- You are receiving this mail because: You are watching all bug changes. _______________________________________________ Koha-bugs mailing list [email protected] https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
