]> Dogcows Code - chaz/chatty/blob - lib/Chatty/Model/DB.pm
add comet support for real-time chatting
[chaz/chatty] / lib / Chatty / Model / DB.pm
1 package Chatty::Model::DB;
2
3 use strict;
4 use base 'Catalyst::Model::DBIC::Schema';
5
6 __PACKAGE__->config(
7 schema_class => 'Chatty::Schema',
8
9 connect_info => {
10 dsn => 'dbi:SQLite:db/info.db',
11 user => '',
12 password => '',
13 on_connect_do => q{PRAGMA foreign_keys = ON},
14 }
15 );
16
17 =head1 NAME
18
19 Chatty::Model::DB - Catalyst DBIC Schema Model
20
21 =head1 SYNOPSIS
22
23 See L<Chatty>
24
25 =head1 DESCRIPTION
26
27 L<Catalyst::Model::DBIC::Schema> Model using schema L<Chatty::Schema>
28
29 =head1 GENERATED BY
30
31 Catalyst::Helper::Model::DBIC::Schema - 0.59
32
33 =head1 AUTHOR
34
35 Charles McGarvey
36
37 =head1 LICENSE
38
39 This library is free software, you can redistribute it and/or modify
40 it under the same terms as Perl itself.
41
42 =cut
43
44 1;
This page took 0.032112 seconds and 4 git commands to generate.