Commit | Line | Data |
---|---|---|
b5c5e046 | 1 | package # hide from PAUSE |
2 | LoadTest::Result::Mixin; | |
8b229aa6 | 3 | |
4 | use strict; | |
5 | use warnings; | |
b5c5e046 | 6 | use parent 'DBIx::Class::Core'; |
8b229aa6 | 7 | |
8 | __PACKAGE__->table('mixin'); | |
9 | ||
10 | __PACKAGE__->add_columns( | |
b5c5e046 | 11 | id => { |
12 | data_type => 'integer', | |
13 | is_auto_increment => 1, | |
b5c5e046 | 14 | }, |
15 | words => { data_type => 'text' } | |
8b229aa6 | 16 | ); |
17 | ||
18 | __PACKAGE__->set_primary_key('id'); | |
19 | ||
20 | 1; |