Bug 32257: Label for patron attributes misaligned
[koha-ffzg.git] / Koha / Schema / Result / TablesSetting.pm
1 use utf8;
2 package Koha::Schema::Result::TablesSetting;
3
4 # Created by DBIx::Class::Schema::Loader
5 # DO NOT MODIFY THE FIRST PART OF THIS FILE
6
7 =head1 NAME
8
9 Koha::Schema::Result::TablesSetting
10
11 =cut
12
13 use strict;
14 use warnings;
15
16 use base 'DBIx::Class::Core';
17
18 =head1 TABLE: C<tables_settings>
19
20 =cut
21
22 __PACKAGE__->table("tables_settings");
23
24 =head1 ACCESSORS
25
26 =head2 module
27
28   data_type: 'varchar'
29   is_nullable: 0
30   size: 255
31
32 =head2 page
33
34   data_type: 'varchar'
35   is_nullable: 0
36   size: 255
37
38 =head2 tablename
39
40   data_type: 'varchar'
41   is_nullable: 0
42   size: 255
43
44 =head2 default_display_length
45
46   data_type: 'smallint'
47   is_nullable: 1
48
49 =head2 default_sort_order
50
51   data_type: 'varchar'
52   is_nullable: 1
53   size: 255
54
55 =cut
56
57 __PACKAGE__->add_columns(
58   "module",
59   { data_type => "varchar", is_nullable => 0, size => 255 },
60   "page",
61   { data_type => "varchar", is_nullable => 0, size => 255 },
62   "tablename",
63   { data_type => "varchar", is_nullable => 0, size => 255 },
64   "default_display_length",
65   { data_type => "smallint", is_nullable => 1 },
66   "default_sort_order",
67   { data_type => "varchar", is_nullable => 1, size => 255 },
68 );
69
70 =head1 PRIMARY KEY
71
72 =over 4
73
74 =item * L</module>
75
76 =item * L</page>
77
78 =item * L</tablename>
79
80 =back
81
82 =cut
83
84 __PACKAGE__->set_primary_key("module", "page", "tablename");
85
86
87 # Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-12-16 11:41:48
88 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:42x+rSLgXvSZBVLx5mh2ng
89
90
91 # You can replace this text with custom code or comments, and it will be preserved on regeneration
92 1;