
RackTables::Types - Common RackTables types

# in a DBIx::Class view definition
use RackTables::Types;
__PACKAGE__->add_columns(
id => { RT_UNSIGNED },
name => { RT_STRING, is_nullable => 0 },
...
}

This modules defines common RackTables types, in order to ease writing DBIx::Class view definitions.

The following types are defined and exported:
integer, non-nullable
unsigned integer, non-nullable
string, default size of 255 characters (override with a size attribute)

Sebastien Aperghis-Tramoni