summary refs log tree commit diff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/intentioncloud/Model/DB.pm34
1 files changed, 34 insertions, 0 deletions
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<intentioncloud>
+
+=head1 DESCRIPTION
+
+L<Catalyst::Model::DBIC::Schema> Model using schema L<intentioncloud::Schema>
+
+=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.