From 4f59dc8fb9026135c5ba9a09dc05af0752e570d2 Mon Sep 17 00:00:00 2001 From: Kyle Hall Date: Mon, 7 Feb 2022 06:31:43 -0500 Subject: [PATCH] Bug 29336: Update DBIC schema Signed-off-by: Kyle M Hall --- Koha/Schema/Result/AdditionalField.pm | 8 ++++---- Koha/Schema/Result/AuthSubfieldStructure.pm | 8 ++++---- Koha/Schema/Result/AuthTagStructure.pm | 8 ++++---- Koha/Schema/Result/ClubTemplateEnrollmentField.pm | 8 ++++---- Koha/Schema/Result/ClubTemplateField.pm | 8 ++++---- Koha/Schema/Result/MarcTagStructure.pm | 8 ++++---- 6 files changed, 24 insertions(+), 24 deletions(-) diff --git a/Koha/Schema/Result/AdditionalField.pm b/Koha/Schema/Result/AdditionalField.pm index 8bfdfb0f54..82c2ea9fb0 100644 --- a/Koha/Schema/Result/AdditionalField.pm +++ b/Koha/Schema/Result/AdditionalField.pm @@ -54,7 +54,7 @@ name of the field data_type: 'varchar' default_value: (empty string) is_nullable: 0 - size: 16 + size: 32 is an authorised value category @@ -85,7 +85,7 @@ __PACKAGE__->add_columns( "name", { data_type => "varchar", default_value => "", is_nullable => 0, size => 255 }, "authorised_value_category", - { data_type => "varchar", default_value => "", is_nullable => 0, size => 16 }, + { data_type => "varchar", default_value => "", is_nullable => 0, size => 32 }, "marcfield", { data_type => "varchar", default_value => "", is_nullable => 0, size => 16 }, "searchable", @@ -138,8 +138,8 @@ __PACKAGE__->has_many( ); -# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-01-21 13:39:29 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:KwAIcvo1IWRRRb/Mb9LyRA +# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-02-07 11:25:42 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:cTNN3Jyge89wBitQxnaqBQ # You can replace this text with custom code or comments, and it will be preserved on regeneration diff --git a/Koha/Schema/Result/AuthSubfieldStructure.pm b/Koha/Schema/Result/AuthSubfieldStructure.pm index 792f043b2b..59c47242b1 100644 --- a/Koha/Schema/Result/AuthSubfieldStructure.pm +++ b/Koha/Schema/Result/AuthSubfieldStructure.pm @@ -80,7 +80,7 @@ __PACKAGE__->table("auth_subfield_structure"); data_type: 'varchar' is_nullable: 1 - size: 10 + size: 32 =head2 value_builder @@ -162,7 +162,7 @@ __PACKAGE__->add_columns( "tab", { data_type => "tinyint", is_nullable => 1 }, "authorised_value", - { data_type => "varchar", is_nullable => 1, size => 10 }, + { data_type => "varchar", is_nullable => 1, size => 32 }, "value_builder", { data_type => "varchar", is_nullable => 1, size => 80 }, "seealso", @@ -217,8 +217,8 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07049 @ 2020-12-10 09:06:23 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:QaSzsLBl3m/n+8u8nXuOeQ +# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-02-07 11:25:42 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:+kqsKHiII5gpxPBd4jjpVA sub koha_object_class { 'Koha::Authority::Subfield'; diff --git a/Koha/Schema/Result/AuthTagStructure.pm b/Koha/Schema/Result/AuthTagStructure.pm index 3bc92350ac..43f480f7a7 100644 --- a/Koha/Schema/Result/AuthTagStructure.pm +++ b/Koha/Schema/Result/AuthTagStructure.pm @@ -68,7 +68,7 @@ __PACKAGE__->table("auth_tag_structure"); data_type: 'varchar' is_nullable: 1 - size: 10 + size: 32 =cut @@ -92,7 +92,7 @@ __PACKAGE__->add_columns( "mandatory", { data_type => "tinyint", default_value => 0, is_nullable => 0 }, "authorised_value", - { data_type => "varchar", is_nullable => 1, size => 10 }, + { data_type => "varchar", is_nullable => 1, size => 32 }, ); =head1 PRIMARY KEY @@ -127,8 +127,8 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:4ulaQnDuxrwYgCKJ/Qygaw +# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-02-07 11:25:42 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:TTID4dRFKdgB0ZJkcC/wnA sub koha_object_class { 'Koha::Authority::Tag'; diff --git a/Koha/Schema/Result/ClubTemplateEnrollmentField.pm b/Koha/Schema/Result/ClubTemplateEnrollmentField.pm index 2a225ccd41..84cab8a343 100644 --- a/Koha/Schema/Result/ClubTemplateEnrollmentField.pm +++ b/Koha/Schema/Result/ClubTemplateEnrollmentField.pm @@ -49,7 +49,7 @@ __PACKAGE__->table("club_template_enrollment_fields"); data_type: 'varchar' is_nullable: 1 - size: 16 + size: 32 =cut @@ -63,7 +63,7 @@ __PACKAGE__->add_columns( "description", { data_type => "mediumtext", is_nullable => 1 }, "authorised_value_category", - { data_type => "varchar", is_nullable => 1, size => 16 }, + { data_type => "varchar", is_nullable => 1, size => 32 }, ); =head1 PRIMARY KEY @@ -111,8 +111,8 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-02-16 17:54:53 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:lN5Shnqo+va0tCdiM/iwNg +# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-02-07 11:25:42 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:M1ZhVamO5XC0uP8oahCe+A sub koha_object_class { 'Koha::Club::Template::EnrollmentField'; diff --git a/Koha/Schema/Result/ClubTemplateField.pm b/Koha/Schema/Result/ClubTemplateField.pm index c0cd92e1b7..480a9a2249 100644 --- a/Koha/Schema/Result/ClubTemplateField.pm +++ b/Koha/Schema/Result/ClubTemplateField.pm @@ -49,7 +49,7 @@ __PACKAGE__->table("club_template_fields"); data_type: 'varchar' is_nullable: 1 - size: 16 + size: 32 =cut @@ -63,7 +63,7 @@ __PACKAGE__->add_columns( "description", { data_type => "mediumtext", is_nullable => 1 }, "authorised_value_category", - { data_type => "varchar", is_nullable => 1, size => 16 }, + { data_type => "varchar", is_nullable => 1, size => 32 }, ); =head1 PRIMARY KEY @@ -111,8 +111,8 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-02-16 17:54:53 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:LRnLRjyMHuEd3KMRMHd3KA +# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-02-07 11:25:42 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:7Fpr+DJDWrW0P3QA75I/Iw sub koha_object_class { 'Koha::Club::Template::Field'; diff --git a/Koha/Schema/Result/MarcTagStructure.pm b/Koha/Schema/Result/MarcTagStructure.pm index 7a88031015..af16b905b9 100644 --- a/Koha/Schema/Result/MarcTagStructure.pm +++ b/Koha/Schema/Result/MarcTagStructure.pm @@ -66,7 +66,7 @@ __PACKAGE__->table("marc_tag_structure"); data_type: 'varchar' is_nullable: 1 - size: 10 + size: 32 =head2 ind1_defaultvalue @@ -105,7 +105,7 @@ __PACKAGE__->add_columns( "important", { data_type => "tinyint", default_value => 0, is_nullable => 0 }, "authorised_value", - { data_type => "varchar", is_nullable => 1, size => 10 }, + { data_type => "varchar", is_nullable => 1, size => 32 }, "ind1_defaultvalue", { data_type => "varchar", default_value => "", is_nullable => 0, size => 1 }, "ind2_defaultvalue", @@ -129,8 +129,8 @@ __PACKAGE__->add_columns( __PACKAGE__->set_primary_key("frameworkcode", "tagfield"); -# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-02-11 14:36:42 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:JdpVv7CUrY61kqmMYDE4AA +# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-02-07 11:25:42 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:jpLPE/GnmEbBHXFthy6jCA # You can replace this text with custom content, and it will be preserved on regeneration -- 2.39.5