From 0da820ac5b3f0f3e63cdc109bc567fe2a76ead3a Mon Sep 17 00:00:00 2001 From: franck cuny Date: Sun, 5 Apr 2009 16:34:48 +0200 Subject: db schema --- lib/intentioncloud/Model/DB.pm | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 lib/intentioncloud/Model/DB.pm (limited to 'lib/intentioncloud') diff --git a/lib/intentioncloud/Model/DB.pm b/lib/intentioncloud/Model/DB.pm new file mode 100644 index 0000000..5e84530 --- /dev/null +++ b/lib/intentioncloud/Model/DB.pm @@ -0,0 +1,34 @@ +package intentioncloud::Model::DB; + +use strict; +use base 'Catalyst::Model::DBIC::Schema'; + +__PACKAGE__->config( + schema_class => 'intentioncloud::Schema', + connect_info => [ + 'dbi:SQLite:intentioncloud.db', + + ], +); + +1; + +=head1 NAME + +intentioncloud::Model::DB - Catalyst DBIC Schema Model +=head1 SYNOPSIS + +See L + +=head1 DESCRIPTION + +L Model using schema L + +=head1 AUTHOR + +franck cuny,,, + +=head1 LICENSE + +This library is free software, you can redistribute it and/or modify +it under the same terms as Perl itself. -- cgit v1.2.3