2 package Koha
::Schema
::Result
::ImportBiblio
;
4 # Created by DBIx::Class::Schema::Loader
5 # DO NOT MODIFY THE FIRST PART OF THIS FILE
9 Koha::Schema::Result::ImportBiblio
16 use base
'DBIx::Class::Core';
18 =head1 TABLE: C<import_biblios>
22 __PACKAGE__
->table("import_biblios");
26 =head2 import_record_id
32 =head2 matched_biblionumber
43 =head2 original_source
81 __PACKAGE__
->add_columns(
83 { data_type
=> "integer", is_foreign_key
=> 1, is_nullable
=> 0 },
84 "matched_biblionumber",
85 { data_type
=> "integer", is_nullable
=> 1 },
87 { data_type
=> "varchar", is_nullable
=> 1, size
=> 25 },
89 { data_type
=> "varchar", is_nullable
=> 1, size
=> 25 },
91 { data_type
=> "varchar", is_nullable
=> 1, size
=> 128 },
93 { data_type
=> "varchar", is_nullable
=> 1, size
=> 80 },
95 { data_type
=> "varchar", is_nullable
=> 1, size
=> 30 },
97 { data_type
=> "varchar", is_nullable
=> 1, size
=> 9 },
99 { data_type
=> "tinyint", default_value
=> 0, is_nullable
=> 0 },
108 Related object: L<Koha::Schema::Result::ImportRecord>
112 __PACKAGE__
->belongs_to(
114 "Koha::Schema::Result::ImportRecord",
115 { import_record_id
=> "import_record_id" },
116 { is_deferrable
=> 1, on_delete
=> "CASCADE", on_update
=> "CASCADE" },
120 # Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21
121 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:6dQmL78YztbxS9qXHciPTQ
124 # You can replace this text with custom content, and it will be preserved on regeneration