Bug 13069 - (follow-up) Enable sort by title to ignore articles
[koha.git] / Koha / Schema / Result / Session.pm
1 use utf8;
2 package Koha::Schema::Result::Session;
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::Session
10
11 =cut
12
13 use strict;
14 use warnings;
15
16 use base 'DBIx::Class::Core';
17
18 =head1 TABLE: C<sessions>
19
20 =cut
21
22 __PACKAGE__->table("sessions");
23
24 =head1 ACCESSORS
25
26 =head2 id
27
28   data_type: 'varchar'
29   is_nullable: 0
30   size: 32
31
32 =head2 a_session
33
34   data_type: 'text'
35   is_nullable: 0
36
37 =cut
38
39 __PACKAGE__->add_columns(
40   "id",
41   { data_type => "varchar", is_nullable => 0, size => 32 },
42   "a_session",
43   { data_type => "text", is_nullable => 0 },
44 );
45
46 =head1 PRIMARY KEY
47
48 =over 4
49
50 =item * L</id>
51
52 =back
53
54 =cut
55
56 __PACKAGE__->set_primary_key("id");
57
58
59 # Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21
60 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:N/DKx6NVPCcbDVK3SSMfGQ
61
62
63 # You can replace this text with custom content, and it will be preserved on regeneration
64 1;