Bug 25501: Supress warnings on installing translation
[koha.git] / Koha / Schema / Result / Session.pm
blob38b2aac159da39356a6eaab2d084c2bf737ec0b6
1 use utf8;
2 package Koha::Schema::Result::Session;
4 # Created by DBIx::Class::Schema::Loader
5 # DO NOT MODIFY THE FIRST PART OF THIS FILE
7 =head1 NAME
9 Koha::Schema::Result::Session
11 =cut
13 use strict;
14 use warnings;
16 use base 'DBIx::Class::Core';
18 =head1 TABLE: C<sessions>
20 =cut
22 __PACKAGE__->table("sessions");
24 =head1 ACCESSORS
26 =head2 id
28 data_type: 'varchar'
29 is_nullable: 0
30 size: 32
32 =head2 a_session
34 data_type: 'longtext'
35 is_nullable: 0
37 =cut
39 __PACKAGE__->add_columns(
40 "id",
41 { data_type => "varchar", is_nullable => 0, size => 32 },
42 "a_session",
43 { data_type => "longtext", is_nullable => 0 },
46 =head1 PRIMARY KEY
48 =over 4
50 =item * L</id>
52 =back
54 =cut
56 __PACKAGE__->set_primary_key("id");
59 # Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-02-16 17:54:54
60 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:YyoQx5Kb6G7W0CVV96chpQ
63 # You can replace this text with custom content, and it will be preserved on regeneration