NAME
DBIx::MoCo::Readonly - Base class for read-only DBIx::MoCo classes.
SYNOPSIS
package NeverChangeModel;
use base qw(DBIx::MoCo);
__PACKAGE__->db_object('NeverChangeDataBase');
__PACKAGE__->table('user');
__PACKAGE__->primary_keys(['user_id']);
1;
SEE ALSO
AUTHOR
Junya Kondo, <jkondo@hatena.com>
COPYRIGHT AND LICENSE
Copyright (C) Hatena Inc. All Rights Reserved.
This library is free software; you may redistribute it and/or modify it under the same terms as Perl itself.