The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

DBIx::Class::UUIDColumns::UUIDMaker::UUID - Create uuids using UUID

SYNOPSIS

  package Artist;
  __PACKAGE__->load_components(qw/UUIDColumns Core DB/);
  __PACKAGE__->uuid_columns( 'artist_id' );
  __PACKAGE__->uuid_class('::UUID');

DESCRIPTION

This DBIx::Class::UUIDColumns::UUIDMaker subclass uses UUID to generate uuid strings in the following format:

  098f2470-bae0-11cd-b579-08002b30bfeb

METHODS

as_string

Returns the new uuid as a string.

SEE ALSO

UUID

AUTHOR

Chris Laco <claco@chrislaco.com>

LICENSE

You may distribute this code under the same terms as Perl itself.