Bug 22284: Schema update
authorJosef Moravec <josef.moravec@gmail.com>
Wed, 3 Jul 2019 22:29:42 +0000 (22:29 +0000)
committerMartin Renvoize <martin.renvoize@ptfs-europe.com>
Fri, 3 Jan 2020 12:58:06 +0000 (12:58 +0000)
Signed-off-by: Josef Moravec <josef.moravec@gmail.com>
Signed-off-by: Liz Rea <wizzyrea@gmail.com>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>

Koha/Schema/Result/LibraryGroup.pm

index 524a469..443e96c 100644 (file)
@@ -71,6 +71,12 @@ __PACKAGE__->table("library_groups");
   default_value: 0
   is_nullable: 0
 
+=head2 ft_local_hold_group
+
+  data_type: 'tinyint'
+  default_value: 0
+  is_nullable: 0
+
 =head2 created_on
 
   data_type: 'timestamp'
@@ -103,6 +109,8 @@ __PACKAGE__->add_columns(
   { data_type => "tinyint", default_value => 0, is_nullable => 0 },
   "ft_search_groups_staff",
   { data_type => "tinyint", default_value => 0, is_nullable => 0 },
+  "ft_local_hold_group",
+  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
   "created_on",
   {
     data_type => "timestamp",
@@ -202,8 +210,8 @@ __PACKAGE__->belongs_to(
 );
 
 
-# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-02-16 17:54:54
-# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:8hvTh2lWoG/MpfSdq4kx5Q
+# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-07-03 22:28:33
+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:mJMYVtlB3JfqMEmNa0SWdg
 
 sub koha_object_class {
     'Koha::Library::Group';