Missing svk add, as usual
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / Serialized.pm
1 package DBICTest::Schema::Serialized;
2
3 use base 'DBIx::Class::Core';
4
5 DBICTest::Schema::Serialized->table('serialized');
6 DBICTest::Schema::Serialized->add_columns(
7   'id' => { data_type => 'integer' },
8   'serialized' => { data_type => 'text' },
9 );
10 DBICTest::Schema::Serialized->set_primary_key('id');
11
12 1;