Bug 21294: Replace BOOLEAN with TINYINT(1) in our DB structure
[srvgit] / Koha / Schema / Result / Subscription.pm
index a668b81..c002d81 100644 (file)
@@ -517,7 +517,8 @@ __PACKAGE__->has_many(
 );
 
 __PACKAGE__->add_columns(
-    '+closed' => { is_boolean => 1 },
+    '+closed'         => { is_boolean => 1 },
+    '+skip_serialseq' => { is_boolean => 1 },
 );
 
 # You can replace this text with custom content, and it will be preserved on regeneration