The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

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

DBIx::MoCo

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.