Add link to SQLHackers documentation
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / Image.pm
CommitLineData
4f6386b0 1package # hide from PAUSE
2 DBICTest::Schema::Image;
3
660cf1be 4use base qw/DBICTest::BaseResult/;
4f6386b0 5
6__PACKAGE__->table('images');
7__PACKAGE__->add_columns(
8 'id' => {
9 data_type => 'integer',
10 is_auto_increment => 1,
11 },
12 'artwork_id' => {
13 data_type => 'integer',
14 is_foreign_key => 1,
15 },
16 'name' => {
17 data_type => 'varchar',
18 size => 100,
19 },
20 'data' => {
21 data_type => 'blob',
22 is_nullable => 1,
23 },
24);
25__PACKAGE__->set_primary_key('id');
26__PACKAGE__->belongs_to('artwork', 'DBICTest::Schema::Artwork', 'artwork_id');
27
281;