From 2acfee069f2e3d2c91b48e982d9340fb27861db8 Mon Sep 17 00:00:00 2001 From: Nick Clemens Date: Fri, 11 Aug 2017 11:57:21 +0000 Subject: [PATCH] Bug 15685: Schema changes Signed-off-by: Katrin Fischer Signed-off-by: Tomas Cohen Arazi --- Koha/Schema/Result/Aqbasket.pm | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/Koha/Schema/Result/Aqbasket.pm b/Koha/Schema/Result/Aqbasket.pm index f4dd75d..d669a3f 100644 --- a/Koha/Schema/Result/Aqbasket.pm +++ b/Koha/Schema/Result/Aqbasket.pm @@ -99,6 +99,12 @@ __PACKAGE__->table("aqbasket"); is_nullable: 1 size: 10 +=head2 create_items + + data_type: 'enum' + extra: {list => ["ordering","receiving","cataloguing"]} + is_nullable: 1 + =head2 branch data_type: 'varchar' @@ -146,6 +152,12 @@ __PACKAGE__->add_columns( { data_type => "varchar", is_nullable => 1, size => 10 }, "billingplace", { data_type => "varchar", is_nullable => 1, size => 10 }, + "create_items", + { + data_type => "enum", + extra => { list => ["ordering", "receiving", "cataloguing"] }, + is_nullable => 1, + }, "branch", { data_type => "varchar", is_foreign_key => 1, is_nullable => 1, size => 10 }, "is_standing", @@ -297,8 +309,8 @@ Composing rels: L -> borrowernumber __PACKAGE__->many_to_many("borrowernumbers", "aqbasketusers", "borrowernumber"); -# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-04-29 13:13:55 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:6gRJtrZ6ZXLHjqX281d9Hg +# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-08-11 11:47:26 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:XP2aUJa2L5DIgqHKizwFzw # You can replace this text with custom code or comments, and it will be preserved on regeneration -- 2.1.4