summary refs log tree commit diff
diff options
context:
space:
mode:
authorfranck cuny <franck@lumberjaph.net>2009-04-05 16:34:48 +0200
committerfranck cuny <franck@lumberjaph.net>2009-04-05 16:34:48 +0200
commit0da820ac5b3f0f3e63cdc109bc567fe2a76ead3a (patch)
tree6e0881f8fc87a7f50788474b7f0faf3d0d41bb23
parenttidy, add forword to end, add last_clouds (diff)
downloadintention-cloud-0da820ac5b3f0f3e63cdc109bc567fe2a76ead3a.tar.gz
db schema
-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.