Fixes to massive breakage introduced by 5948 ribasushi--
[dbsrgits/DBIx-Class.git] / t / cdbi / testlib / ActorAlias.pm
CommitLineData
50891152 1package # hide from PAUSE
2 ActorAlias;
3
4use strict;
5use warnings;
6
97d61088 7use base 'DBIC::Test::SQLite';
50891152 8
9__PACKAGE__->set_table( 'ActorAlias' );
10
11__PACKAGE__->columns( Primary => 'id' );
12__PACKAGE__->columns( All => qw/ actor alias / );
13__PACKAGE__->has_a( actor => 'Actor' );
14__PACKAGE__->has_a( alias => 'Actor' );
15
16sub create_sql {
17 return qq{
18 id INTEGER PRIMARY KEY,
19 actor INTEGER,
20 alias INTEGER
21 }
22}
23
241;
25