We can now generate our own test schema
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / LinerNotes.pm
1 package DBICTest::Schema::LinerNotes;
2
3 use base qw/DBIx::Class::Core/;
4
5 DBICTest::Schema::LinerNotes->table('liner_notes');
6 DBICTest::Schema::LinerNotes->add_columns(
7   'liner_id' => {
8     data_type => 'integer',
9   },
10   'notes' => {
11     data_type => 'varchar',
12   },
13 );
14 DBICTest::Schema::LinerNotes->set_primary_key('liner_id');
15
16 1;