Increment version for 3.22.6 release
[koha.git] / Koha / Schema / Result / ExportFormat.pm
blob0882bcf8725068555fdc76cd670e9ac895ee0d19
1 use utf8;
2 package Koha::Schema::Result::ExportFormat;
4 # Created by DBIx::Class::Schema::Loader
5 # DO NOT MODIFY THE FIRST PART OF THIS FILE
7 =head1 NAME
9 Koha::Schema::Result::ExportFormat - Used for CSV export
11 =cut
13 use strict;
14 use warnings;
16 use base 'DBIx::Class::Core';
18 =head1 TABLE: C<export_format>
20 =cut
22 __PACKAGE__->table("export_format");
24 =head1 ACCESSORS
26 =head2 export_format_id
28 data_type: 'integer'
29 is_auto_increment: 1
30 is_nullable: 0
32 =head2 profile
34 data_type: 'varchar'
35 is_nullable: 0
36 size: 255
38 =head2 description
40 data_type: 'mediumtext'
41 is_nullable: 0
43 =head2 content
45 data_type: 'mediumtext'
46 is_nullable: 0
48 =head2 csv_separator
50 data_type: 'varchar'
51 is_nullable: 0
52 size: 2
54 =head2 field_separator
56 data_type: 'varchar'
57 is_nullable: 0
58 size: 2
60 =head2 subfield_separator
62 data_type: 'varchar'
63 is_nullable: 0
64 size: 2
66 =head2 encoding
68 data_type: 'varchar'
69 is_nullable: 0
70 size: 255
72 =head2 type
74 data_type: 'varchar'
75 default_value: 'marc'
76 is_nullable: 1
77 size: 255
79 =cut
81 __PACKAGE__->add_columns(
82 "export_format_id",
83 { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
84 "profile",
85 { data_type => "varchar", is_nullable => 0, size => 255 },
86 "description",
87 { data_type => "mediumtext", is_nullable => 0 },
88 "content",
89 { data_type => "mediumtext", is_nullable => 0 },
90 "csv_separator",
91 { data_type => "varchar", is_nullable => 0, size => 2 },
92 "field_separator",
93 { data_type => "varchar", is_nullable => 0, size => 2 },
94 "subfield_separator",
95 { data_type => "varchar", is_nullable => 0, size => 2 },
96 "encoding",
97 { data_type => "varchar", is_nullable => 0, size => 255 },
98 "type",
100 data_type => "varchar",
101 default_value => "marc",
102 is_nullable => 1,
103 size => 255,
107 =head1 PRIMARY KEY
109 =over 4
111 =item * L</export_format_id>
113 =back
115 =cut
117 __PACKAGE__->set_primary_key("export_format_id");
120 # Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21
121 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:AJbxXXJBftCbSKm2E/ZTjA
124 # You can replace this text with custom content, and it will be preserved on regeneration