Bug 15685: DBIC Schema changes
authorJonathan Druart <jonathan.druart@bugs.koha-community.org>
Tue, 10 Oct 2017 20:32:49 +0000 (17:32 -0300)
committerJonathan Druart <jonathan.druart@bugs.koha-community.org>
Wed, 11 Oct 2017 16:08:47 +0000 (13:08 -0300)
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Koha/Schema/Result/Aqbasket.pm

index f4dd75d..d820708 100644 (file)
@@ -112,6 +112,12 @@ __PACKAGE__->table("aqbasket");
   default_value: 0
   is_nullable: 0
 
+=head2 create_items
+
+  data_type: 'enum'
+  extra: {list => ["ordering","receiving","cataloguing"]}
+  is_nullable: 1
+
 =cut
 
 __PACKAGE__->add_columns(
@@ -150,6 +156,12 @@ __PACKAGE__->add_columns(
   { data_type => "varchar", is_foreign_key => 1, is_nullable => 1, size => 10 },
   "is_standing",
   { data_type => "tinyint", default_value => 0, is_nullable => 0 },
+  "create_items",
+  {
+    data_type => "enum",
+    extra => { list => ["ordering", "receiving", "cataloguing"] },
+    is_nullable => 1,
+  },
 );
 
 =head1 PRIMARY KEY
@@ -297,8 +309,8 @@ Composing rels: L</aqbasketusers> -> 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-10-10 14:27:08
+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:4lGbfEcXLR67RbYp4aNzTg
 
 
 # You can replace this text with custom code or comments, and it will be preserved on regeneration