Bug 17767: DBIC update
authorTomas Cohen Arazi <tomascohen@theke.io>
Tue, 13 Dec 2016 20:42:53 +0000 (17:42 -0300)
committerKyle M Hall <kyle@bywatersolutions.com>
Wed, 28 Dec 2016 13:53:02 +0000 (13:53 +0000)
This patch can be skipped by the RM, it just updates the DBIC schema files.

Signed-off-by: Owen Leonard <oleonard@myacpl.org>
Signed-off-by: Jonathan Druart <jonathan.druart@biblibre.com>
Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
Koha/Schema/Result/BorrowerModification.pm

index 0e55830..af4895a 100644 (file)
@@ -404,6 +404,11 @@ __PACKAGE__->table("borrower_modifications");
   data_type: 'integer'
   is_nullable: 1
 
+=head2 extended_attributes
+
+  data_type: 'text'
+  is_nullable: 1
+
 =cut
 
 __PACKAGE__->add_columns(
@@ -566,6 +571,8 @@ __PACKAGE__->add_columns(
   { data_type => "varchar", is_nullable => 1, size => 50 },
   "privacy",
   { data_type => "integer", is_nullable => 1 },
+  "extended_attributes",
+  { data_type => "text", is_nullable => 1 },
 );
 
 =head1 PRIMARY KEY
@@ -583,8 +590,8 @@ __PACKAGE__->add_columns(
 __PACKAGE__->set_primary_key("verification_token", "borrowernumber");
 
 
-# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-10-06 10:38:42
-# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:vZ9XjkjQv0q6l2kW3KMsLg
+# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-12-12 20:04:12
+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:IZNhBX5Bj+x4S8JCWG+7lA
 
 
 # You can replace this text with custom content, and it will be preserved on regeneration