Bug 25501: Supress warnings on installing translation
[koha.git] / Koha / Schema / Result / CreatorLayout.pm
blobc37c6626042fc2baea526794f8d9043a78920db2
1 use utf8;
2 package Koha::Schema::Result::CreatorLayout;
4 # Created by DBIx::Class::Schema::Loader
5 # DO NOT MODIFY THE FIRST PART OF THIS FILE
7 =head1 NAME
9 Koha::Schema::Result::CreatorLayout
11 =cut
13 use strict;
14 use warnings;
16 use base 'DBIx::Class::Core';
18 =head1 TABLE: C<creator_layouts>
20 =cut
22 __PACKAGE__->table("creator_layouts");
24 =head1 ACCESSORS
26 =head2 layout_id
28 data_type: 'integer'
29 is_auto_increment: 1
30 is_nullable: 0
32 =head2 barcode_type
34 data_type: 'char'
35 default_value: 'CODE39'
36 is_nullable: 0
37 size: 100
39 =head2 start_label
41 data_type: 'integer'
42 default_value: 1
43 is_nullable: 0
45 =head2 printing_type
47 data_type: 'char'
48 default_value: 'BAR'
49 is_nullable: 0
50 size: 32
52 =head2 layout_name
54 data_type: 'char'
55 default_value: 'DEFAULT'
56 is_nullable: 0
57 size: 25
59 =head2 guidebox
61 data_type: 'integer'
62 default_value: 0
63 is_nullable: 1
65 =head2 oblique_title
67 data_type: 'integer'
68 default_value: 1
69 is_nullable: 1
71 =head2 font
73 data_type: 'char'
74 default_value: 'TR'
75 is_nullable: 0
76 size: 10
78 =head2 font_size
80 data_type: 'integer'
81 default_value: 10
82 is_nullable: 0
84 =head2 units
86 data_type: 'char'
87 default_value: 'POINT'
88 is_nullable: 0
89 size: 20
91 =head2 callnum_split
93 data_type: 'integer'
94 default_value: 0
95 is_nullable: 1
97 =head2 text_justify
99 data_type: 'char'
100 default_value: 'L'
101 is_nullable: 0
102 size: 1
104 =head2 format_string
106 data_type: 'varchar'
107 default_value: 'barcode'
108 is_nullable: 0
109 size: 210
111 =head2 layout_xml
113 data_type: 'mediumtext'
114 is_nullable: 0
116 =head2 creator
118 data_type: 'char'
119 default_value: 'Labels'
120 is_nullable: 0
121 size: 15
123 =cut
125 __PACKAGE__->add_columns(
126 "layout_id",
127 { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
128 "barcode_type",
130 data_type => "char",
131 default_value => "CODE39",
132 is_nullable => 0,
133 size => 100,
135 "start_label",
136 { data_type => "integer", default_value => 1, is_nullable => 0 },
137 "printing_type",
138 { data_type => "char", default_value => "BAR", is_nullable => 0, size => 32 },
139 "layout_name",
141 data_type => "char",
142 default_value => "DEFAULT",
143 is_nullable => 0,
144 size => 25,
146 "guidebox",
147 { data_type => "integer", default_value => 0, is_nullable => 1 },
148 "oblique_title",
149 { data_type => "integer", default_value => 1, is_nullable => 1 },
150 "font",
151 { data_type => "char", default_value => "TR", is_nullable => 0, size => 10 },
152 "font_size",
153 { data_type => "integer", default_value => 10, is_nullable => 0 },
154 "units",
155 { data_type => "char", default_value => "POINT", is_nullable => 0, size => 20 },
156 "callnum_split",
157 { data_type => "integer", default_value => 0, is_nullable => 1 },
158 "text_justify",
159 { data_type => "char", default_value => "L", is_nullable => 0, size => 1 },
160 "format_string",
162 data_type => "varchar",
163 default_value => "barcode",
164 is_nullable => 0,
165 size => 210,
167 "layout_xml",
168 { data_type => "mediumtext", is_nullable => 0 },
169 "creator",
171 data_type => "char",
172 default_value => "Labels",
173 is_nullable => 0,
174 size => 15,
178 =head1 PRIMARY KEY
180 =over 4
182 =item * L</layout_id>
184 =back
186 =cut
188 __PACKAGE__->set_primary_key("layout_id");
191 # Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-02-16 17:54:53
192 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:GdBVaqH0rfn1Jy/t57ieNA
195 # You can replace this text with custom content, and it will be preserved on regeneration