2 package Koha
::Schema
::Result
::ExportFormat
;
4 # Created by DBIx::Class::Schema::Loader
5 # DO NOT MODIFY THE FIRST PART OF THIS FILE
9 Koha::Schema::Result::ExportFormat - Used for CSV export
16 use base
'DBIx::Class::Core';
18 =head1 TABLE: C<export_format>
22 __PACKAGE__
->table("export_format");
26 =head2 export_format_id
55 =head2 field_separator
61 =head2 subfield_separator
84 default_value: 'export_records'
90 __PACKAGE__
->add_columns(
92 { data_type
=> "integer", is_auto_increment
=> 1, is_nullable
=> 0 },
94 { data_type
=> "varchar", is_nullable
=> 0, size
=> 255 },
96 { data_type
=> "longtext", is_nullable
=> 0 },
98 { data_type
=> "longtext", is_nullable
=> 0 },
100 { data_type
=> "varchar", default_value
=> ",", is_nullable
=> 0, size
=> 2 },
102 { data_type
=> "varchar", is_nullable
=> 1, size
=> 2 },
103 "subfield_separator",
104 { data_type
=> "varchar", is_nullable
=> 1, size
=> 2 },
107 data_type
=> "varchar",
108 default_value
=> "utf8",
114 data_type
=> "varchar",
115 default_value
=> "marc",
121 data_type
=> "varchar",
122 default_value
=> "export_records",
132 =item * L</export_format_id>
138 __PACKAGE__
->set_primary_key("export_format_id");
141 # Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-02-16 17:54:53
142 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:YSQshI3mJfO0LsOlwvdIdg
144 sub koha_object_class
{
147 sub koha_objects_class
{