Help for this page

Select Code to Download


  1. or download this
    
    DBIx::Class::Schema::deploy(): DBIx::Class::Schema::deploy(): 
    ...
    );
    
    ") at deploy.pl line 32
    
  2. or download this
    # deploy Schema
    my $schema = My::Schema->connect($dsn, $user_name, $password);
    $schema->deploy({ add_drop_table => 1});
    
  3. or download this
    
    package My::Schema::Result::User;
    ...
    __PACKAGE__->meta->make_immutable;
    1;
    __END__
    
  4. or download this
    package My::Schema::Result::User;
    
    ...
    __PACKAGE__->meta->make_immutable;
    1;
    __END__