Bugzilla – Attachment 165041 Details for
Bug 30888
Add a table for deletedauthorities
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 30888: [DBIX] Schema file for deletedauth_header
Bug-30888-DBIX-Schema-file-for-deletedauthheader.patch (text/plain), 3.00 KB, created by
Marcel de Rooy
on 2024-04-18 07:37:31 UTC
(
hide
)
Description:
Bug 30888: [DBIX] Schema file for deletedauth_header
Filename:
MIME Type:
Creator:
Marcel de Rooy
Created:
2024-04-18 07:37:31 UTC
Size:
3.00 KB
patch
obsolete
>From e4808a927570bfb22bd4765d98c8895c8cf734d6 Mon Sep 17 00:00:00 2001 >From: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> >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 <m.de.rooy@rijksmuseum.nl> >--- > 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<deletedauth_header> >+ >+=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</authid> >+ >+=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
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 30888
:
165040
|
165041
|
165042
|
165043
|
171850
|
171851
|
172090
|
172091
|
172092
|
172093
|
172094
|
172095
|
172096
|
172097
|
172098
|
172099
|
172549
|
172550
|
172551
|
172552
|
172553