From b2f5c4fd4a9e509a92a47ce0e7c0295ee61c90b1 Mon Sep 17 00:00:00 2001 From: Charles Farmer Date: Wed, 21 Feb 2018 15:14:00 -0500 Subject: [PATCH] Bug 11297 - Modify Z3950server schema file --- Koha/Schema/Result/Z3950server.pm | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/Koha/Schema/Result/Z3950server.pm b/Koha/Schema/Result/Z3950server.pm index f2a5de2..1c71506 100644 --- a/Koha/Schema/Result/Z3950server.pm +++ b/Koha/Schema/Result/Z3950server.pm @@ -120,6 +120,12 @@ __PACKAGE__->table("z3950servers"); data_type: 'longtext' is_nullable: 1 +=head2 attributes + + data_type: 'varchar' + is_nullable: 1 + size: 255 + =cut __PACKAGE__->add_columns( @@ -167,6 +173,8 @@ __PACKAGE__->add_columns( { data_type => "longtext", is_nullable => 1 }, "add_xslt", { data_type => "longtext", is_nullable => 1 }, + "attributes", + { data_type => "varchar", is_nullable => 1, size => 255 }, ); =head1 PRIMARY KEY @@ -182,8 +190,8 @@ __PACKAGE__->add_columns( __PACKAGE__->set_primary_key("id"); -# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-02-16 17:54:54 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:KK2y1pbgVh1hOVLAXL1e/w +# Created by DBIx::Class::Schema::Loader v0.07047 @ 2018-02-20 01:04:22 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:YUp6TnDwq7/oLaSmSdVE3A # You can replace this text with custom code or comments, and it will be preserved on regeneration -- 2.7.4