1 package # hide from PAUSE
2 ViewDeps::Result::JustATable;
4 use base qw(DBIx::Class::Core);
6 __PACKAGE__->table('just_a_table');
8 __PACKAGE__->add_columns(
9 id => { data_type => 'integer', is_auto_increment => 1 },
10 name => { data_type => 'varchar', size => 255 }
13 __PACKAGE__->set_primary_key('id');
15 __PACKAGE__->has_many(
17 'ViewDeps::Result::Bar',
18 { 'foreign.b' => 'self.id' }