Bug 25501: Supress warnings on installing translation
[koha.git] / Koha / Schema / Result / ReportsDictionary.pm
blobe81b1aa52c7aac0ad427d9e829026e0fdcf4c0f6
1 use utf8;
2 package Koha::Schema::Result::ReportsDictionary;
4 # Created by DBIx::Class::Schema::Loader
5 # DO NOT MODIFY THE FIRST PART OF THIS FILE
7 =head1 NAME
9 Koha::Schema::Result::ReportsDictionary
11 =cut
13 use strict;
14 use warnings;
16 use base 'DBIx::Class::Core';
18 =head1 TABLE: C<reports_dictionary>
20 =cut
22 __PACKAGE__->table("reports_dictionary");
24 =head1 ACCESSORS
26 =head2 id
28 data_type: 'integer'
29 is_auto_increment: 1
30 is_nullable: 0
32 =head2 name
34 data_type: 'varchar'
35 is_nullable: 1
36 size: 255
38 =head2 description
40 data_type: 'mediumtext'
41 is_nullable: 1
43 =head2 date_created
45 data_type: 'datetime'
46 datetime_undef_if_invalid: 1
47 is_nullable: 1
49 =head2 date_modified
51 data_type: 'datetime'
52 datetime_undef_if_invalid: 1
53 is_nullable: 1
55 =head2 saved_sql
57 data_type: 'mediumtext'
58 is_nullable: 1
60 =head2 report_area
62 data_type: 'varchar'
63 is_nullable: 1
64 size: 6
66 =cut
68 __PACKAGE__->add_columns(
69 "id",
70 { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
71 "name",
72 { data_type => "varchar", is_nullable => 1, size => 255 },
73 "description",
74 { data_type => "mediumtext", is_nullable => 1 },
75 "date_created",
77 data_type => "datetime",
78 datetime_undef_if_invalid => 1,
79 is_nullable => 1,
81 "date_modified",
83 data_type => "datetime",
84 datetime_undef_if_invalid => 1,
85 is_nullable => 1,
87 "saved_sql",
88 { data_type => "mediumtext", is_nullable => 1 },
89 "report_area",
90 { data_type => "varchar", is_nullable => 1, size => 6 },
93 =head1 PRIMARY KEY
95 =over 4
97 =item * L</id>
99 =back
101 =cut
103 __PACKAGE__->set_primary_key("id");
106 # Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-02-16 17:54:54
107 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:0akgYM7kqiLxz95xUCdrdQ
110 # You can replace this text with custom content, and it will be preserved on regeneration