# Copyright 2001-2004 Six Apart. This code cannot be redistributed without
# permission from www.movabletype.org.
#
# $Id: Session.pm,v 1.6 2004/05/04 00:12:52 ezra Exp $

package MT::Session;
use strict;

use MT::Object;
@MT::Session::ISA = qw( MT::Object );
__PACKAGE__->install_properties({
    columns => [ qw(id data email name kind start) ],
    indexes => { id => 1, start => 1, kind => 1 },
    datasource => 'session',
});

1;

