The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

package # hide from PAUSE
DBICTest::Schema::Serialized;
use strict;
__PACKAGE__->table('serialized');
__PACKAGE__->add_columns(
'id' => { data_type => 'integer', is_auto_increment => 1 },
'serialized' => { data_type => 'text' },
);
__PACKAGE__->set_primary_key('id');
1;