Welcome to docs.opsview.com

Catalyst Model

The model is changed at the controller specification:

__PACKAGE__->config(
  model_name => 'OpsviewSchema::Contact',
);

OpsviewSchema refers to the DBIx::Class model, whereas OpsviewDB refers to the Class::DBI model.

Switching over is a case of changing this variable. Reads should just work. More effort required for saves.

For DBIx::Class models, you can use a synchronise method. Add this:

__PACKAGE__->config(
   use_synchronise => {
        active    => 0,   
    }
);