Advertisement
Guest User

Untitled

a guest
Jun 1st, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. package sillyApp::Model::TestDatabase;
  2.  
  3. use strict;
  4. use base 'Catalyst::Model::DBIC::Schema';
  5.  
  6. __PACKAGE__->config(
  7. schema_class => 'sillyApp::Schema::TestDatabase',
  8.  
  9. connect_info => {
  10. dsn => 'dbi:SQLite:/tmp/database',
  11. user => '',
  12. password => '',
  13. }
  14. );
  15.  
  16. =head1 NAME
  17.  
  18. sillyApp::Model::TestDatabase - Catalyst DBIC Schema Model
  19.  
  20. =head1 SYNOPSIS
  21.  
  22. See L<sillyApp>
  23.  
  24. =head1 DESCRIPTION
  25.  
  26. L<Catalyst::Model::DBIC::Schema> Model using schema L<sillyApp::Schema::TestDatabase>
  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