Bug 8798: (follow-up) update schema files
[koha.git] / Koha / Schema / Result / Branchcategory.pm
index 7538dfa..592a1d7 100644 (file)
@@ -43,6 +43,12 @@ __PACKAGE__->table("branchcategories");
   is_nullable: 1
   size: 16
 
+=head2 show_in_pulldown
+
+  data_type: 'tinyint'
+  default_value: 0
+  is_nullable: 0
+
 =cut
 
 __PACKAGE__->add_columns(
@@ -54,6 +60,8 @@ __PACKAGE__->add_columns(
   { data_type => "mediumtext", is_nullable => 1 },
   "categorytype",
   { data_type => "varchar", is_nullable => 1, size => 16 },
+  "show_in_pulldown",
+  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
 );
 __PACKAGE__->set_primary_key("categorycode");
 
@@ -75,8 +83,8 @@ __PACKAGE__->has_many(
 );
 
 
-# Created by DBIx::Class::Schema::Loader v0.07000 @ 2012-09-02 08:44:15
-# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:i3um3oAfQ9EV/pJHuUiWnA
+# Created by DBIx::Class::Schema::Loader v0.07000 @ 2013-06-18 13:13:57
+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:VkvImio07fpqmHCntPn5+w
 
 
 # You can replace this text with custom content, and it will be preserved on regeneration