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 YUI::Metadata;

use strict;

use base 'Rose::DB::Object::Metadata';
use YUI;

sub init_db {
    my $self = shift;
    my $db   = YUI->init_db;
    $self->{db_id} = $db->{id};
    return $db;
}

1;