From e4808a927570bfb22bd4765d98c8895c8cf734d6 Mon Sep 17 00:00:00 2001 From: Marcel de Rooy Date: Wed, 17 Apr 2024 14:33:36 +0000 Subject: [PATCH] Bug 30888: [DBIX] Schema file for deletedauth_header Content-Type: text/plain; charset=utf-8 Signed-off-by: Marcel de Rooy --- Koha/Schema/Result/DeletedauthHeader.pm | 124 ++++++++++++++++++++++++ 1 file changed, 124 insertions(+) create mode 100644 Koha/Schema/Result/DeletedauthHeader.pm diff --git a/Koha/Schema/Result/DeletedauthHeader.pm b/Koha/Schema/Result/DeletedauthHeader.pm new file mode 100644 index 0000000000..58ee3beae9 --- /dev/null +++ b/Koha/Schema/Result/DeletedauthHeader.pm @@ -0,0 +1,124 @@ +use utf8; +package Koha::Schema::Result::DeletedauthHeader; + +# Created by DBIx::Class::Schema::Loader +# DO NOT MODIFY THE FIRST PART OF THIS FILE + +=head1 NAME + +Koha::Schema::Result::DeletedauthHeader + +=cut + +use strict; +use warnings; + +use base 'DBIx::Class::Core'; + +=head1 TABLE: C + +=cut + +__PACKAGE__->table("deletedauth_header"); + +=head1 ACCESSORS + +=head2 authid + + data_type: 'bigint' + extra: {unsigned => 1} + is_nullable: 0 + +=head2 authtypecode + + data_type: 'varchar' + default_value: (empty string) + is_nullable: 0 + size: 10 + +=head2 datecreated + + data_type: 'date' + datetime_undef_if_invalid: 1 + is_nullable: 1 + +=head2 modification_time + + data_type: 'timestamp' + datetime_undef_if_invalid: 1 + default_value: current_timestamp + is_nullable: 0 + +=head2 origincode + + data_type: 'varchar' + is_nullable: 1 + size: 20 + +=head2 authtrees + + data_type: 'longtext' + is_nullable: 1 + +=head2 marc + + data_type: 'blob' + is_nullable: 1 + +=head2 linkid + + data_type: 'bigint' + is_nullable: 1 + +=head2 marcxml + + data_type: 'longtext' + is_nullable: 0 + +=cut + +__PACKAGE__->add_columns( + "authid", + { data_type => "bigint", extra => { unsigned => 1 }, is_nullable => 0 }, + "authtypecode", + { data_type => "varchar", default_value => "", is_nullable => 0, size => 10 }, + "datecreated", + { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 }, + "modification_time", + { + data_type => "timestamp", + datetime_undef_if_invalid => 1, + default_value => \"current_timestamp", + is_nullable => 0, + }, + "origincode", + { data_type => "varchar", is_nullable => 1, size => 20 }, + "authtrees", + { data_type => "longtext", is_nullable => 1 }, + "marc", + { data_type => "blob", is_nullable => 1 }, + "linkid", + { data_type => "bigint", is_nullable => 1 }, + "marcxml", + { data_type => "longtext", is_nullable => 0 }, +); + +=head1 PRIMARY KEY + +=over 4 + +=item * L + +=back + +=cut + +__PACKAGE__->set_primary_key("authid"); + + +# Created by DBIx::Class::Schema::Loader v0.07049 @ 2024-04-17 14:32:41 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:0jyCSX6kJcGGLPMxF1noXQ + + +# You can replace this text with custom code or comments, and it will be preserved on regeneration +1; -- 2.30.2