blob: cead1c41bfd48352e458520480b2b75f28f61e61 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
package intentioncloud::Schema;
use strict;
use base qw/DBIx::Class::Schema::Loader/;
__PACKAGE__->loader_options(
relationships => 1,
# debug => 1,
);
=head1 NAME
intentioncloud::Schema - DBIx::Class::Schema::Loader class
=head1 SYNOPSIS
See L<intentioncloud>
=head1 DESCRIPTION
Generated by L<Catalyst::Model::DBIC::Schema> for use in L<intentioncloud::Model::DB>
=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.
=cut
1;
|