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 37 38
|
use utf8;
package CiderWebmail::DB;
# Created by DBIx::Class::Schema::Loader
# DO NOT MODIFY THE FIRST PART OF THIS FILE
use strict;
use warnings;
use base 'DBIx::Class::Schema';
__PACKAGE__->load_namespaces;
# Created by DBIx::Class::Schema::Loader v0.07043 @ 2015-07-29 00:19:21
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:AbihVTWvVWmDqC27cqjSRA
=head1 NAME
CiderWebmail::DB
=head1 DESCRIPTION
CiderWebmail saves user settings like the most recently used sort order or From name in an SQL database.
Defaults to SQLite3 root/var/user_settings.sql
=head1 AUTHOR
Stefan Seifert <nine@cpan.org>
=head1 LICENSE
This library is free software, you can redistribute it and/or modify
it under the same terms as Perl itself.
=cut
1;
|