Main Koha release repository https://koha-community.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

64 lines
956 B

use utf8;
package Koha::Schema::Result::Session;
# Created by DBIx::Class::Schema::Loader
# DO NOT MODIFY THE FIRST PART OF THIS FILE
=head1 NAME
Koha::Schema::Result::Session
=cut
use strict;
use warnings;
use base 'DBIx::Class::Core';
=head1 TABLE: C<sessions>
=cut
__PACKAGE__->table("sessions");
=head1 ACCESSORS
=head2 id
data_type: 'varchar'
is_nullable: 0
size: 32
=head2 a_session
data_type: 'mediumtext'
is_nullable: 0
=cut
__PACKAGE__->add_columns(
"id",
{ data_type => "varchar", is_nullable => 0, size => 32 },
"a_session",
{ data_type => "mediumtext", is_nullable => 0 },
);
=head1 PRIMARY KEY
=over 4
=item * L</id>
=back
=cut
__PACKAGE__->set_primary_key("id");
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-04-23 13:21:59
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:gsbP76fskUOelxUl8nAVMQ
# You can replace this text with custom content, and it will be preserved on regeneration
1;