MySQL-Util
view release on metacpan or search on metacpan
lib/MySQL/Util/Lite/ColumnConstraint.pm view on Meta::CPAN
package MySQL::Util::Lite::ColumnConstraint;
our $VERSION = '0.01';
use Modern::Perl;
use Moose;
use namespace::autoclean;
use Method::Signatures;
use Data::Printer alias => 'pdump';
has column_name => (
is => 'ro',
isa => 'Str',
required => 1,
);
has table_name => (
is => 'ro',
isa => 'Str',
required => 1,
);
has schema_name => (
is => 'ro',
isa => 'Str',
required => 1,
);
has parent_column_name => (
is => 'ro',
isa => 'Str',
required => 1,
);
has parent_table_name => (
is => 'ro',
isa => 'Str',
required => 1,
);
has parent_schema_name => (
is => 'ro',
isa => 'Str',
required => 1,
);
1;
( run in 1.404 second using v1.01-cache-2.11-cpan-39bf76dae61 )