aboutsummaryrefslogtreecommitdiffstats
path: root/t/lib/RTest/TestDB/Bar.pm
diff options
context:
space:
mode:
authormatthewt <matthewt@03d0b0b2-0e1a-0410-a411-fdb2f4bd65d7>2007-09-12 18:11:34 +0000
committermatthewt <matthewt@03d0b0b2-0e1a-0410-a411-fdb2f4bd65d7>2007-09-12 18:11:34 +0000
commit7adfd53f17f66ffe93763e944ed1d3fc52a369dc (patch)
tree19e599e74419b41cbbe651fd226b81e8b73551d3 /t/lib/RTest/TestDB/Bar.pm
parentc728c97cb1061330e63c7cc048e768ef74988fe6 (diff)
downloadreaction-7adfd53f17f66ffe93763e944ed1d3fc52a369dc.tar.gz
reaction-7adfd53f17f66ffe93763e944ed1d3fc52a369dc.zip
moved shit to trunk
Diffstat (limited to 't/lib/RTest/TestDB/Bar.pm')
-rw-r--r--t/lib/RTest/TestDB/Bar.pm34
1 files changed, 34 insertions, 0 deletions
diff --git a/t/lib/RTest/TestDB/Bar.pm b/t/lib/RTest/TestDB/Bar.pm
new file mode 100644
index 0000000..4e22d06
--- /dev/null
+++ b/t/lib/RTest/TestDB/Bar.pm
@@ -0,0 +1,34 @@
+package # hide from PAUSE
+ RTest::TestDB::Bar;
+
+use DBIx::Class 0.07;
+
+use base qw/DBIx::Class Reaction::Object/;
+use Reaction::Class;
+use Reaction::Types::DateTime;
+use Reaction::Types::File;
+
+has 'name' => (isa => 'NonEmptySimpleStr', is => 'rw', required => 1);
+has 'foo' => (isa => 'RTest::TestDB::Foo', is => 'rw', required => 1);
+has 'published_at' => (isa => 'DateTime', is => 'rw');
+has 'avatar' => (isa => 'File', is => 'rw');
+
+__PACKAGE__->load_components(qw/InflateColumn::DateTime Core/);
+
+__PACKAGE__->table('bar');
+
+__PACKAGE__->add_columns(
+ name => { data_type => 'varchar', size => 255 },
+ foo_id => { data_type => 'integer', size => 16 },
+ published_at => { data_type => 'datetime', is_nullable => 1 },
+ avatar => { data_type => 'blob', is_nullable => 1 },
+);
+
+__PACKAGE__->set_primary_key('name');
+
+__PACKAGE__->belongs_to(
+ 'foo' => 'RTest::TestDB::Foo',
+ { 'foreign.id' => 'self.foo_id' }
+);
+
+1;