Bug 14279: Remove CGI::scrolling_list from issues_avg_stats.pl
[koha.git] / Koha / Schema / Result / Systempreference.pm
blobef05bd803160457a13a3bad819508a5fb02cbf00
1 use utf8;
2 package Koha::Schema::Result::Systempreference;
4 # Created by DBIx::Class::Schema::Loader
5 # DO NOT MODIFY THE FIRST PART OF THIS FILE
7 =head1 NAME
9 Koha::Schema::Result::Systempreference
11 =cut
13 use strict;
14 use warnings;
16 use base 'DBIx::Class::Core';
18 =head1 TABLE: C<systempreferences>
20 =cut
22 __PACKAGE__->table("systempreferences");
24 =head1 ACCESSORS
26 =head2 variable
28 data_type: 'varchar'
29 default_value: (empty string)
30 is_nullable: 0
31 size: 50
33 =head2 value
35 data_type: 'text'
36 is_nullable: 1
38 =head2 options
40 data_type: 'mediumtext'
41 is_nullable: 1
43 =head2 explanation
45 data_type: 'text'
46 is_nullable: 1
48 =head2 type
50 data_type: 'varchar'
51 is_nullable: 1
52 size: 20
54 =cut
56 __PACKAGE__->add_columns(
57 "variable",
58 { data_type => "varchar", default_value => "", is_nullable => 0, size => 50 },
59 "value",
60 { data_type => "text", is_nullable => 1 },
61 "options",
62 { data_type => "mediumtext", is_nullable => 1 },
63 "explanation",
64 { data_type => "text", is_nullable => 1 },
65 "type",
66 { data_type => "varchar", is_nullable => 1, size => 20 },
69 =head1 PRIMARY KEY
71 =over 4
73 =item * L</variable>
75 =back
77 =cut
79 __PACKAGE__->set_primary_key("variable");
82 # Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21
83 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:WalVf/kVVNRcfYely910iQ
86 # You can replace this text with custom content, and it will be preserved on regeneration