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

NAME

Alzabo::Create::ColumnDefinition - Column definition object for schema creation

SYNOPSIS

  use Alzabo::Create::ColumnDefinition;

DESCRIPTION

This object holds information on a column that might need to be shared with another column. The reason this class exists is that if a column is a key in two or more tables, then some of the information related to that column should change automatically in multiple places whenever it changes at all. Right now this is only type ('VARCHAR', 'NUMBER', etc) and length/precision information. This object also has an 'owner', which is the column which created it.

INHERITS FROM

Alzabo::ColumnDefinition

METHODS

new

Parameters

  • owner => Alzabo::Create::ColumnDefinition object

  • type => $type

Returns

A new Alzabo::Create::ColumnDefinition object.

alter

This method allows you to change a column's type, length, and precision as a single operation and should be instead of calling set_type followed by set_length.

Parameters

  • type => $type

  • length => $length (optional)

  • precision => $precision (optional)

set_type ($string)

Sets the object's type.

set_length

Parameters

  • length => $length

  • precision => $precision (optional)

Sets the column's length and precision. The precision parameter is optional (though some column types may require it if the length is set).