Advertisement
Guest User

Untitled

a guest
Jun 1st, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. package MyApp::Model::TestDatabase;
  2.  
  3. use strict;
  4. use base 'Catalyst::Model::DBIC::Schema';
  5.  
  6. __PACKAGE__->config(
  7. schema_class => 'MyApp::',
  8.  
  9. connect_info => {
  10. dsn => 'Schema::TestDatabase',
  11. user => 'create=dynamic',
  12. password => 'dbi:SQLite:tmp/database',
  13. }
  14. );
  15.  
  16. =head1 NAME
  17.  
  18. MyApp::Model::TestDatabase - Catalyst DBIC Schema Model
  19.  
  20. =head1 SYNOPSIS
  21.  
  22. See L<MyApp>
  23.  
  24. =head1 DESCRIPTION
  25.  
  26. L<Catalyst::Model::DBIC::Schema> Model using schema L<MyApp::>
  27.  
  28. =head1 GENERATED BY
  29.  
  30. Catalyst::Helper::Model::DBIC::Schema - 0.41
  31.  
  32. =head1 AUTHOR
  33.  
  34. Test
  35.  
  36. =head1 LICENSE
  37.  
  38. This library is free software, you can redistribute it and/or modify
  39. it under the same terms as Perl itself.
  40.  
  41. =cut
  42.  
  43. 1;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement