Sponsoring The Perl Toolchain Summit 2025: Help make this important event another success Learn more

package # hide from PAUSE
DigestTest::Schema::WithTimeStamp;
use strict;
__PACKAGE__->load_components(qw/TimeStamp EncodedColumn/);
__PACKAGE__->table('test_with_timestamp');
__PACKAGE__->add_columns(
id => {
data_type => 'int',
is_nullable => 0,
is_auto_increment => 1
},
bcrypt_1 => {
data_type => 'text',
is_nullable => 1,
size => 60,
encode_column => 1,
encode_class => 'Crypt::Eksblowfish::Bcrypt',
encode_check_method => 'bcrypt_1_check',
},
bcrypt_2 => {
data_type => 'text',
is_nullable => 1,
size => 59,
encode_column => 1,
encode_class => 'Crypt::Eksblowfish::Bcrypt',
encode_args => {key_nul => 0, cost => 6 },
encode_check_method => 'bcrypt_2_check',
},
);
__PACKAGE__->set_primary_key('id');
1;