Bug 21395: Fix creation of PO file
[koha.git] / Koha / Schema / Result / ColumnsSetting.pm
blob0bd430766dc9a949db2d040ed1dfb790235dc2a6
1 use utf8;
2 package Koha::Schema::Result::ColumnsSetting;
4 # Created by DBIx::Class::Schema::Loader
5 # DO NOT MODIFY THE FIRST PART OF THIS FILE
7 =head1 NAME
9 Koha::Schema::Result::ColumnsSetting
11 =cut
13 use strict;
14 use warnings;
16 use base 'DBIx::Class::Core';
18 =head1 TABLE: C<columns_settings>
20 =cut
22 __PACKAGE__->table("columns_settings");
24 =head1 ACCESSORS
26 =head2 module
28 data_type: 'varchar'
29 is_nullable: 0
30 size: 255
32 =head2 page
34 data_type: 'varchar'
35 is_nullable: 0
36 size: 255
38 =head2 tablename
40 data_type: 'varchar'
41 is_nullable: 0
42 size: 255
44 =head2 columnname
46 data_type: 'varchar'
47 is_nullable: 0
48 size: 255
50 =head2 cannot_be_toggled
52 data_type: 'integer'
53 default_value: 0
54 is_nullable: 0
56 =head2 is_hidden
58 data_type: 'integer'
59 default_value: 0
60 is_nullable: 0
62 =cut
64 __PACKAGE__->add_columns(
65 "module",
66 { data_type => "varchar", is_nullable => 0, size => 255 },
67 "page",
68 { data_type => "varchar", is_nullable => 0, size => 255 },
69 "tablename",
70 { data_type => "varchar", is_nullable => 0, size => 255 },
71 "columnname",
72 { data_type => "varchar", is_nullable => 0, size => 255 },
73 "cannot_be_toggled",
74 { data_type => "integer", default_value => 0, is_nullable => 0 },
75 "is_hidden",
76 { data_type => "integer", default_value => 0, is_nullable => 0 },
79 =head1 PRIMARY KEY
81 =over 4
83 =item * L</module>
85 =item * L</page>
87 =item * L</tablename>
89 =item * L</columnname>
91 =back
93 =cut
95 __PACKAGE__->set_primary_key("module", "page", "tablename", "columnname");
98 # Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-12-12 16:06:36
99 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:IhREpW2PRxxFF9EYOGt2Qg
102 # You can replace this text with custom code or comments, and it will be preserved on regeneration