use SQL::Translator::Types
[dbsrgits/SQL-Translator-2.0-ish.git] / lib / SQL / Translator / Object / Index.pm
CommitLineData
c5051351 1package SQL::Translator::Object::Index;
2use Moose;
eeb819a1 3use SQL::Translator::Types;
c5051351 4
5has 'name' => (is => 'ro', isa => 'Str', required => 1);
eeb819a1 6has 'columns' => (is => 'ro', isa => 'ArrayRef[Column]', required => 1);
c5051351 7has 'type' => (is => 'ro', isa => 'Str', required => 1);
8
91;