Fix view ordering by requiring ddo declaration in result class
[dbsrgits/DBIx-Class-ResultSource-MultipleTableInheritance.git] / t / lib / LoadTest / Result / JustATable.pm
CommitLineData
3365fc70 1package # hide from PAUSE
2 LoadTest::Result::JustATable;
490d5481 3
4use base qw(DBIx::Class::Core);
5
6__PACKAGE__->table('just_a_table');
7
8__PACKAGE__->add_columns(
9 id => { data_type => 'integer', is_auto_increment => 1 },
10 name => { data_type => 'varchar', size => 255 }
11);
12
13__PACKAGE__->set_primary_key('id');
14
c965b761 15#__PACKAGE__->has_many(
16 #'bars',
17 #'LoadTest::Result::Bar',
18 #{ 'foreign.b' => 'self.id' }
19#);
490d5481 20
21
221;