]> Dogcows Code - chaz/p5-DBIx-Class-ResultSet-RecursiveUpdate/blob - t/lib/DBICTest/Schema/Serialized.pm
tests from multicreate
[chaz/p5-DBIx-Class-ResultSet-RecursiveUpdate] / t / lib / DBICTest / Schema / Serialized.pm
1 package # hide from PAUSE
2 DBICTest::Schema::Serialized;
3
4 use base 'DBIx::Class::Core';
5
6 __PACKAGE__->table('serialized');
7 __PACKAGE__->add_columns(
8 'id' => { data_type => 'integer' },
9 'serialized' => { data_type => 'text' },
10 );
11 __PACKAGE__->set_primary_key('id');
12
13 1;
This page took 0.031547 seconds and 4 git commands to generate.