aboutsummaryrefslogtreecommitdiffstats
path: root/t/lib/RTest/TestDB/FooBaz.pm
diff options
context:
space:
mode:
Diffstat (limited to 't/lib/RTest/TestDB/FooBaz.pm')
-rw-r--r--t/lib/RTest/TestDB/FooBaz.pm22
1 files changed, 22 insertions, 0 deletions
diff --git a/t/lib/RTest/TestDB/FooBaz.pm b/t/lib/RTest/TestDB/FooBaz.pm
new file mode 100644
index 0000000..695b141
--- /dev/null
+++ b/t/lib/RTest/TestDB/FooBaz.pm
@@ -0,0 +1,22 @@
+package # hide from PAUSE
+ RTest::TestDB::FooBaz;
+
+use DBIx::Class 0.07;
+
+use base qw/DBIx::Class/;
+
+__PACKAGE__->load_components(qw/InflateColumn::DateTime Core/);
+
+__PACKAGE__->table('foo_baz');
+
+__PACKAGE__->add_columns(
+ foo => { data_type => 'integer', size => 16 },
+ baz => { data_type => 'integer', size => 16 },
+);
+
+__PACKAGE__->set_primary_key(qw/foo baz/);
+
+__PACKAGE__->belongs_to('foo' => 'RTest::TestDB::Foo');
+__PACKAGE__->belongs_to('baz' => 'RTest::TestDB::Baz');
+
+1;