NAME
Fey::Meta::Attribute::FromColumn - An attribute metaclass for column-based attributes
VERSION
version 0.47
SYNOPSIS
package
MyApp::Song;
has_table(
$schema
->table(
'Song'
) );
for
my
$attr
(
grep
{
$_
->can(
'column'
) }
$self
->meta()->get_all_attributes )
{
...
}
DESCRIPTION
This attribute metaclass is used when Fey::ORM::Table creates attributes for the class's associated table.
METHODS
This class adds a single method to those provided by Moose::Meta::Attribute
:
$attr->column()
Returns the Fey::Column object associated with this attribute.
AUTHOR
Dave Rolsky <autarch@urth.org>
COPYRIGHT AND LICENSE
This software is copyright (c) 2011 - 2015 by Dave Rolsky.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.