NAME

Table::Denormalized::ColumnSet - Encapsulate a group of columns

SYNOPSIS

  use Table::Denormalized::ColumnSet;

  my $file_info = Table::Denormalized::ColumnSet->new(
    _name    => 'File Information',
    uri      => 'VARCHAR(1024)',
    size     => 'INTEGER',
    modified => 'INTEGER',
    md5      => 'VARCHAR(64)',
  );

ABSTRACT

This module (trivially) encapsulates a set of columns and gives that set a name.

AUTHOR

Max Maischein, <corion@cpan.org>

SEE ALSO

DBI, Class::DBI