Bug 17767: DBIC update
[koha.git] / Koha / Schema / Result / OaiSetsMapping.pm
index 53b3f61..e4dd532 100644 (file)
@@ -1,17 +1,21 @@
+use utf8;
 package Koha::Schema::Result::OaiSetsMapping;
 
 # Created by DBIx::Class::Schema::Loader
 # DO NOT MODIFY THE FIRST PART OF THIS FILE
 
+=head1 NAME
+
+Koha::Schema::Result::OaiSetsMapping
+
+=cut
+
 use strict;
 use warnings;
 
 use base 'DBIx::Class::Core';
 
-
-=head1 NAME
-
-Koha::Schema::Result::OaiSetsMapping
+=head1 TABLE: C<oai_sets_mappings>
 
 =cut
 
@@ -37,6 +41,13 @@ __PACKAGE__->table("oai_sets_mappings");
   is_nullable: 0
   size: 1
 
+=head2 operator
+
+  data_type: 'varchar'
+  default_value: 'equal'
+  is_nullable: 0
+  size: 8
+
 =head2 marcvalue
 
   data_type: 'varchar'
@@ -52,6 +63,13 @@ __PACKAGE__->add_columns(
   { data_type => "char", is_nullable => 0, size => 3 },
   "marcsubfield",
   { data_type => "char", is_nullable => 0, size => 1 },
+  "operator",
+  {
+    data_type => "varchar",
+    default_value => "equal",
+    is_nullable => 0,
+    size => 8,
+  },
   "marcvalue",
   { data_type => "varchar", is_nullable => 0, size => 80 },
 );
@@ -70,12 +88,12 @@ __PACKAGE__->belongs_to(
   "set",
   "Koha::Schema::Result::OaiSet",
   { id => "set_id" },
-  { on_delete => "CASCADE", on_update => "CASCADE" },
+  { is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" },
 );
 
 
-# Created by DBIx::Class::Schema::Loader v0.07000 @ 2012-09-02 08:44:15
-# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:vWEr0nzPAHZAmjsA2NAaQQ
+# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21
+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:A2fchnI85JftSuruZ1CykQ
 
 
 # You can replace this text with custom content, and it will be preserved on regeneration