blob: 5e171e2e16f2deb79a09946c78e9adcc113c6e87 (
plain)
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
36
|
package Fripost::Schema;
use 5.010_000;
use warnings;
use strict;
use base qw/DBIx::Class::Schema/;
our $VERSION = '0.01';
__PACKAGE__->load_namespaces();
1;
=head1 NAME
Fripost::Schema -
=head1 AUTHOR
Stefan Kangas C<< <skangas at skangas.se> >>
=head1 COPYRIGHT
Copyright 2010 Stefan Kangas, all rights reserved.
=head1 LICENSE
This program is free software; you can redistribute it and/or modify it
under the same terms as perl itself.
=cut
1; # End of Schema.pm
__END__
|