From 71c3b63682765a4407ac198ad2392709bd19388c Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Fri, 7 Feb 2025 12:11:35 +0000 Subject: [PATCH] Bug 38924: DBIC Dump --- Koha/Schema/Result/PatronQuotaUsage.pm | 34 ++++++++++++++++++++++++-- 1 file changed, 32 insertions(+), 2 deletions(-) diff --git a/Koha/Schema/Result/PatronQuotaUsage.pm b/Koha/Schema/Result/PatronQuotaUsage.pm index 43508504ac1..02f6f0508b1 100644 --- a/Koha/Schema/Result/PatronQuotaUsage.pm +++ b/Koha/Schema/Result/PatronQuotaUsage.pm @@ -54,6 +54,23 @@ linking to issues.issue_id or old_issues.issue_id foreign key linking to borrowers.borrowernumber +=head2 type + + data_type: 'enum' + extra: {list => ["ISSUE","RENEW"]} + is_nullable: 0 + +The type of usage this is + +=head2 creation_date + + data_type: 'timestamp' + datetime_undef_if_invalid: 1 + default_value: current_timestamp + is_nullable: 0 + +the timestamp for when a usage was recorded + =cut __PACKAGE__->add_columns( @@ -65,6 +82,19 @@ __PACKAGE__->add_columns( { data_type => "integer", is_nullable => 1 }, "patron_id", { data_type => "integer", is_foreign_key => 1, is_nullable => 0 }, + "type", + { + data_type => "enum", + extra => { list => ["ISSUE", "RENEW"] }, + is_nullable => 0, + }, + "creation_date", + { + data_type => "timestamp", + datetime_undef_if_invalid => 1, + default_value => \"current_timestamp", + is_nullable => 0, + }, ); =head1 PRIMARY KEY @@ -112,8 +142,8 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07051 @ 2025-02-07 14:14:27 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:/UbHmNOqiKX4ZjaDZOKi0Q +# Created by DBIx::Class::Schema::Loader v0.07051 @ 2025-02-07 11:22:06 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:WSsSTNOfNnTSyP3AGS9NXA sub koha_object_class { -- 2.48.1