get rid of commented out code
[dbsrgits/DBIx-Class-Journal.git] / lib / DBIx / Class / Schema / Journal / DB / ChangeSet.pm
CommitLineData
f0f14c64 1package DBIx::Class::Schema::Journal::DB::ChangeSet;
2
3use base 'DBIx::Class';
4
5__PACKAGE__->load_components(qw/InflateColumn::DateTime Core/);
6__PACKAGE__->table('changeset');
7
8__PACKAGE__->add_columns(
0192d267 9 ID => {
f0f14c64 10 data_type => 'integer',
11 is_auto_increment => 1,
12 is_primary_key => 1,
13 is_nullable => 0,
14 },
15 user_id => {
16 data_type => 'integer',
74f04ccc 17 is_nullable => 1,
f0f14c64 18 is_foreign_key => 1,
19 },
20 set_date => {
21 data_type => 'timestamp',
22 is_nullable => 0,
f0f14c64 23 },
24 session_id => {
25 data_type => 'varchar',
26 size => 255,
27 is_nullable => 1,
28 },
29 );
30
cf628f4c 31sub new {
32 my $self = shift->next::method(@_);
9a52f4b4 33 $self->set_date(gmtime);
cf628f4c 34 return $self;
35}
36
0192d267 37__PACKAGE__->set_primary_key('ID');
f0f14c64 38
391;