Bug 21395: Fix creation of PO file
[koha.git] / Koha / Schema / Result / Quote.pm
blob99bcb14f7cc06d4e285a97b50ca5daca0e130f22
1 use utf8;
2 package Koha::Schema::Result::Quote;
4 # Created by DBIx::Class::Schema::Loader
5 # DO NOT MODIFY THE FIRST PART OF THIS FILE
7 =head1 NAME
9 Koha::Schema::Result::Quote
11 =cut
13 use strict;
14 use warnings;
16 use base 'DBIx::Class::Core';
18 =head1 TABLE: C<quotes>
20 =cut
22 __PACKAGE__->table("quotes");
24 =head1 ACCESSORS
26 =head2 id
28 data_type: 'integer'
29 is_auto_increment: 1
30 is_nullable: 0
32 =head2 source
34 data_type: 'mediumtext'
35 is_nullable: 1
37 =head2 text
39 data_type: 'longtext'
40 is_nullable: 0
42 =head2 timestamp
44 data_type: 'datetime'
45 datetime_undef_if_invalid: 1
46 is_nullable: 1
48 =cut
50 __PACKAGE__->add_columns(
51 "id",
52 { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
53 "source",
54 { data_type => "mediumtext", is_nullable => 1 },
55 "text",
56 { data_type => "longtext", is_nullable => 0 },
57 "timestamp",
59 data_type => "datetime",
60 datetime_undef_if_invalid => 1,
61 is_nullable => 1,
65 =head1 PRIMARY KEY
67 =over 4
69 =item * L</id>
71 =back
73 =cut
75 __PACKAGE__->set_primary_key("id");
78 # Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-02-19 11:09:24
79 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:CdcbCjhjmsLLDQ1AAOja7Q
82 # You can replace this text with custom content, and it will be preserved on regeneration