Bug 13023: (RM followup) DBIx updates
authorTomas Cohen Arazi <tomascohen@gmail.com>
Thu, 23 Apr 2015 15:42:50 +0000 (12:42 -0300)
committerTomas Cohen Arazi <tomascohen@gmail.com>
Thu, 23 Apr 2015 15:46:48 +0000 (12:46 -0300)
Signed-off-by: Tomas Cohen Arazi <tomascohen@gmail.com>
Koha/Schema/Result/Deleteditem.pm
Koha/Schema/Result/Item.pm

index f915511..63ca492 100644 (file)
@@ -172,6 +172,11 @@ __PACKAGE__->table("deleteditems");
   data_type: 'mediumtext'
   is_nullable: 1
 
+=head2 itemnotes_nonpublic
+
+  data_type: 'mediumtext'
+  is_nullable: 1
+
 =head2 holdingbranch
 
   data_type: 'varchar'
@@ -328,6 +333,8 @@ __PACKAGE__->add_columns(
   { data_type => "tinyint", is_nullable => 1 },
   "itemnotes",
   { data_type => "mediumtext", is_nullable => 1 },
+  "itemnotes_nonpublic",
+  { data_type => "mediumtext", is_nullable => 1 },
   "holdingbranch",
   { data_type => "varchar", is_nullable => 1, size => 10 },
   "paidfor",
@@ -380,8 +387,8 @@ __PACKAGE__->add_columns(
 __PACKAGE__->set_primary_key("itemnumber");
 
 
-# Created by DBIx::Class::Schema::Loader v0.07039 @ 2014-10-24 09:58:16
-# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Ru5DyaIlWJcMNAgpZRjOLg
+# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-04-23 12:42:12
+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:+aDMnEj1EvLQTQPAEl1ocg
 
 
 # You can replace this text with custom content, and it will be preserved on regeneration
index f883659..0650c4f 100644 (file)
@@ -174,6 +174,11 @@ __PACKAGE__->table("items");
   data_type: 'mediumtext'
   is_nullable: 1
 
+=head2 itemnotes_nonpublic
+
+  data_type: 'mediumtext'
+  is_nullable: 1
+
 =head2 holdingbranch
 
   data_type: 'varchar'
@@ -336,6 +341,8 @@ __PACKAGE__->add_columns(
   { data_type => "tinyint", is_nullable => 1 },
   "itemnotes",
   { data_type => "mediumtext", is_nullable => 1 },
+  "itemnotes_nonpublic",
+  { data_type => "mediumtext", is_nullable => 1 },
   "holdingbranch",
   { data_type => "varchar", is_foreign_key => 1, is_nullable => 1, size => 10 },
   "paidfor",
@@ -609,8 +616,8 @@ __PACKAGE__->might_have(
 );
 
 
-# Created by DBIx::Class::Schema::Loader v0.07039 @ 2014-10-24 09:58:16
-# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:2slVK/FjcRDiYLeufoOFQQ
+# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-04-23 12:42:12
+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:urSpNt7LBda4T5Plhi6cPw
 
 sub effective_itemtype {
     my ( $self ) = @_;