Fix class name typo
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / FileColumn.pm
CommitLineData
4740bdb7 1package
2DBICTest::Schema::FileColumn;
3
4use strict;
5use warnings;
6use base qw/DBIx::Class::Core/;
7
28d4067a 8__PACKAGE__->load_components(qw/InflateColumn::File/);
4740bdb7 9
10__PACKAGE__->table('file_columns');
11
12__PACKAGE__->add_columns(
13 id => { data_type => 'integer', is_auto_increment => 1 },
14 file => { data_type => 'varchar', is_file_column => 1, file_column_path => '/tmp', size=>255 }
15);
16
17__PACKAGE__->set_primary_key('id');
18
191;