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

NAME

Myco::Schema - place to collect and manage tangram schema definitions

SYNOPSIS

 use Myco::Schema;

 # Use Myco::Schema to extract schema from all of the Myco entity classes

 my $schema;
 unless ($schema = Myco::Schema->schema) {
    # gotta compile it fresh
    Myco::Schema::mkschema();
    $schema = Myco::Schema->schema;
 }

See Myco and Tangram::Storage for other miscellany.

DESCRIPTION

Myco::Schema collects and compiles tangram schema for all basic Myco framework entity classes. It will also (in a future release) manage schema for entity classes in the various Myco applications.