Bug 9701: (QA follow-up) DBIx schema changes
authorMarcel de Rooy <m.de.rooy@rijksmuseum.nl>
Mon, 9 Apr 2018 07:08:59 +0000 (09:08 +0200)
committerJonathan Druart <jonathan.druart@bugs.koha-community.org>
Thu, 12 Apr 2018 13:50:34 +0000 (10:50 -0300)
Changes in MarcTagStructure.pm

Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl>
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Koha/Schema/Result/MarcTagStructure.pm

index 8873ef3..4f16468 100644 (file)
@@ -62,6 +62,20 @@ __PACKAGE__->table("marc_tag_structure");
   is_nullable: 1
   size: 10
 
+=head2 ind1_defaultvalue
+
+  data_type: 'varchar'
+  default_value: (empty string)
+  is_nullable: 0
+  size: 1
+
+=head2 ind2_defaultvalue
+
+  data_type: 'varchar'
+  default_value: (empty string)
+  is_nullable: 0
+  size: 1
+
 =head2 frameworkcode
 
   data_type: 'varchar'
@@ -84,6 +98,10 @@ __PACKAGE__->add_columns(
   { data_type => "tinyint", default_value => 0, is_nullable => 0 },
   "authorised_value",
   { data_type => "varchar", is_nullable => 1, size => 10 },
+  "ind1_defaultvalue",
+  { data_type => "varchar", default_value => "", is_nullable => 0, size => 1 },
+  "ind2_defaultvalue",
+  { data_type => "varchar", default_value => "", is_nullable => 0, size => 1 },
   "frameworkcode",
   { data_type => "varchar", default_value => "", is_nullable => 0, size => 4 },
 );
@@ -103,8 +121,8 @@ __PACKAGE__->add_columns(
 __PACKAGE__->set_primary_key("frameworkcode", "tagfield");
 
 
-# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21
-# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:TvdQBCX3rEhJxxqGcqrpWw
+# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-04-09 09:07:51
+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:6EvGakEpGreV0hom7P6Efg
 
 
 # You can replace this text with custom content, and it will be preserved on regeneration