Browse Source

Bug 17767: DBIC update

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>
17.05.x
Tomás Cohen Arazi 8 years ago
committed by Kyle M Hall
parent
commit
ce0d3fa662
  1. 11
      Koha/Schema/Result/BorrowerModification.pm

11
Koha/Schema/Result/BorrowerModification.pm

@ -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

Loading…
Cancel
Save