There is an ongoing outage on the primary CPAN mirror. It is possible to work around the issue by using MetaCPAN as a mirror.

NAME

App::ProxyHunter::Model::Schema - base class for proxyhunter's schema

SYNOPSIS

package App::ProxyHunter::Model::Schema::mydb;

use Mo;
extends 'App::ProxyHunter::Model::Schema';

table {
	...
}

SUBCLASSING

You should inherit this class to implement adapter for specific database. In this subclass you need to declare database schema using Teng::Schema::Declare. This package should contain __DATA__ section with create statement for database. See available implementations.