Bugzilla – Attachment 78386 Details for
Bug 5458
length of items.ccode disagrees with authorised_values.authorised_value
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 5458: Update DBIx schema
Bug-5458-Update-DBIx-schema.patch (text/plain), 4.90 KB, created by
Fridolin Somers
on 2018-09-04 10:19:30 UTC
(
hide
)
Description:
Bug 5458: Update DBIx schema
Filename:
MIME Type:
Creator:
Fridolin Somers
Created:
2018-09-04 10:19:30 UTC
Size:
4.90 KB
patch
obsolete
>From e7b5ecc020cff1e6aabadeb4bf8cb05983d2fd9b Mon Sep 17 00:00:00 2001 >From: Fridolin Somers <fridolin.somers@biblibre.com> >Date: Tue, 4 Sep 2018 11:04:15 +0200 >Subject: [PATCH] Bug 5458: Update DBIx schema > >--- > Koha/Schema/Result/BranchTransferLimit.pm | 8 ++++---- > Koha/Schema/Result/CourseItem.pm | 8 ++++---- > Koha/Schema/Result/Deleteditem.pm | 8 ++++---- > Koha/Schema/Result/Item.pm | 8 ++++---- > 4 files changed, 16 insertions(+), 16 deletions(-) > >diff --git a/Koha/Schema/Result/BranchTransferLimit.pm b/Koha/Schema/Result/BranchTransferLimit.pm >index a704c68ff9..5d6c551566 100644 >--- a/Koha/Schema/Result/BranchTransferLimit.pm >+++ b/Koha/Schema/Result/BranchTransferLimit.pm >@@ -54,7 +54,7 @@ __PACKAGE__->table("branch_transfer_limits"); > > data_type: 'varchar' > is_nullable: 1 >- size: 10 >+ size: 80 > > =cut > >@@ -83,7 +83,7 @@ __PACKAGE__->add_columns( > "itemtype", > { data_type => "varchar", is_nullable => 1, size => 10 }, > "ccode", >- { data_type => "varchar", is_nullable => 1, size => 10 }, >+ { data_type => "varchar", is_nullable => 1, size => 80 }, > ); > > =head1 PRIMARY KEY >@@ -99,8 +99,8 @@ __PACKAGE__->add_columns( > __PACKAGE__->set_primary_key("limitId"); > > >-# Created by DBIx::Class::Schema::Loader v0.07039 @ 2014-08-18 13:01:05 >-# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:XPpJwcw5PRa7Fo7PRg32zg >+# Created by DBIx::Class::Schema::Loader v0.07045 @ 2018-09-04 11:03:15 >+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:UNy0mkMQUdfuCQa6UP5Oww > > > # You can replace this text with custom content, and it will be preserved on regeneration >diff --git a/Koha/Schema/Result/CourseItem.pm b/Koha/Schema/Result/CourseItem.pm >index 1766302449..7d2533058e 100644 >--- a/Koha/Schema/Result/CourseItem.pm >+++ b/Koha/Schema/Result/CourseItem.pm >@@ -45,7 +45,7 @@ __PACKAGE__->table("course_items"); > > data_type: 'varchar' > is_nullable: 1 >- size: 10 >+ size: 80 > > =head2 holdingbranch > >@@ -84,7 +84,7 @@ __PACKAGE__->add_columns( > "itype", > { data_type => "varchar", is_nullable => 1, size => 10 }, > "ccode", >- { data_type => "varchar", is_nullable => 1, size => 10 }, >+ { data_type => "varchar", is_nullable => 1, size => 80 }, > "holdingbranch", > { data_type => "varchar", is_foreign_key => 1, is_nullable => 1, size => 10 }, > "location", >@@ -184,8 +184,8 @@ __PACKAGE__->belongs_to( > ); > > >-# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-09-02 09:46:54 >-# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:g5lEeHNvnM4KIb6AJUxDOw >+# Created by DBIx::Class::Schema::Loader v0.07045 @ 2018-09-04 11:03:15 >+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:TcKD3pRsaROe5p7A991U/g > > > # You can replace this text with custom content, and it will be preserved on regeneration >diff --git a/Koha/Schema/Result/Deleteditem.pm b/Koha/Schema/Result/Deleteditem.pm >index 2eff4e9b36..ed9efd60c8 100644 >--- a/Koha/Schema/Result/Deleteditem.pm >+++ b/Koha/Schema/Result/Deleteditem.pm >@@ -235,7 +235,7 @@ __PACKAGE__->table("deleteditems"); > > data_type: 'varchar' > is_nullable: 1 >- size: 10 >+ size: 80 > > =head2 materials > >@@ -375,7 +375,7 @@ __PACKAGE__->add_columns( > "cn_sort", > { data_type => "varchar", is_nullable => 1, size => 255 }, > "ccode", >- { data_type => "varchar", is_nullable => 1, size => 10 }, >+ { data_type => "varchar", is_nullable => 1, size => 80 }, > "materials", > { data_type => "mediumtext", is_nullable => 1 }, > "uri", >@@ -407,8 +407,8 @@ __PACKAGE__->add_columns( > __PACKAGE__->set_primary_key("itemnumber"); > > >-# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-02-18 16:41:11 >-# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:xb11fPjp5PyXU7yfFWHycw >+# Created by DBIx::Class::Schema::Loader v0.07045 @ 2018-09-04 11:03:15 >+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Ltw9PT9b04/wtWSyMdC3pw > > > # You can replace this text with custom content, and it will be preserved on regeneration >diff --git a/Koha/Schema/Result/Item.pm b/Koha/Schema/Result/Item.pm >index cee25520cc..e68a67679a 100644 >--- a/Koha/Schema/Result/Item.pm >+++ b/Koha/Schema/Result/Item.pm >@@ -239,7 +239,7 @@ __PACKAGE__->table("items"); > > data_type: 'varchar' > is_nullable: 1 >- size: 10 >+ size: 80 > > =head2 materials > >@@ -389,7 +389,7 @@ __PACKAGE__->add_columns( > "cn_sort", > { data_type => "varchar", is_nullable => 1, size => 255 }, > "ccode", >- { data_type => "varchar", is_nullable => 1, size => 10 }, >+ { data_type => "varchar", is_nullable => 1, size => 80 }, > "materials", > { data_type => "mediumtext", is_nullable => 1 }, > "uri", >@@ -687,8 +687,8 @@ __PACKAGE__->might_have( > ); > > >-# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-02-18 16:41:12 >-# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:CrNXvpDUvvcuPZK2Gfzs/Q >+# Created by DBIx::Class::Schema::Loader v0.07045 @ 2018-09-04 11:03:15 >+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:g7Q0rSLDs49ZQ0gI7+eaGw > > __PACKAGE__->belongs_to( biblioitem => "Koha::Schema::Result::Biblioitem", "biblioitemnumber" ); > >-- >2.17.1
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 5458
:
78385
|
78386
|
78553
|
78554
|
79316
|
79317
|
79331
|
79332