The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more
12345678910111213141516 package # hide from PAUSE DBICTest::Schema::Serialized;use warnings;use strict;use base qw/DBICTest::BaseResult/;__PACKAGE__->table('serialized');__PACKAGE__->add_columns( 'id' => { data_type => 'integer', is_auto_increment => 1 }, 'serialized' => { data_type => 'text' },);__PACKAGE__->set_primary_key('id');1;
package
# hide from PAUSE
DBICTest::Schema::Serialized;
use
warnings;
strict;
base
qw/DBICTest::BaseResult/
;
__PACKAGE__->table(
'serialized'
);
__PACKAGE__->add_columns(
'id'
=> {
data_type
=>
'integer'
,
is_auto_increment
=> 1 },
'text'
},
__PACKAGE__->set_primary_key(
1;