Alzabo::Create - Loads all Alzabo::Create::* classes


Alzabo documentation Contained in the Alzabo distribution.

Index


Code Index:

NAME

Top

Alzabo::Create - Loads all Alzabo::Create::* classes

SYNOPSIS

Top

  use Alzabo::Create;

DESCRIPTION

Top

Using this module loads Alzabo::Create::* modules.

These are the core modules that allow a new set of objects to be created. This module should be used by any schema creation interface.

AUTHOR

Top

Dave Rolsky, <autarch@urth.org>


Alzabo documentation Contained in the Alzabo distribution.

package Alzabo::Create;

use Alzabo;

use Alzabo::Create::Column;
use Alzabo::Create::ColumnDefinition;
use Alzabo::Create::ForeignKey;
use Alzabo::Create::Index;
use Alzabo::Create::Table;
use Alzabo::Create::Schema;

use vars qw($VERSION);

$VERSION = 2.0;

1;

__END__