Bug 26853: DBIC schema changes
[koha.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   default_value: 20
48   is_nullable: 0
49
50 =head2 default_sort_order
51
52   data_type: 'varchar'
53   is_nullable: 1
54   size: 255
55
56 =cut
57
58 __PACKAGE__->add_columns(
59   "module",
60   { data_type => "varchar", is_nullable => 0, size => 255 },
61   "page",
62   { data_type => "varchar", is_nullable => 0, size => 255 },
63   "tablename",
64   { data_type => "varchar", is_nullable => 0, size => 255 },
65   "default_display_length",
66   { data_type => "smallint", default_value => 20, is_nullable => 0 },
67   "default_sort_order",
68   { data_type => "varchar", is_nullable => 1, size => 255 },
69 );
70
71 =head1 PRIMARY KEY
72
73 =over 4
74
75 =item * L</module>
76
77 =item * L</page>
78
79 =item * L</tablename>
80
81 =back
82
83 =cut
84
85 __PACKAGE__->set_primary_key("module", "page", "tablename");
86
87
88 # Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-12-10 17:22:41
89 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:A2GDoSG702QYDH8nYPEJ2Q
90
91
92 # You can replace this text with custom code or comments, and it will be preserved on regeneration
93 1;