The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
package CustomUUIDMaker;

use strict;
use warnings;

use base qw/DBIx::Class::UUIDColumns::UUIDMaker/;

sub as_string {
    return '12345678-1234-2345-3456-123456789090';
};

1;
__END__