view lib/IMPL/SQL/Schema/Constraint/Unique.pm @ 411:ee36115f6a34 ref20150831

sync
author cin
date Mon, 21 Sep 2015 00:53:10 +0300
parents c6e90e02dd17
children
line wrap: on
line source

package IMPL::SQL::Schema::Constraint::Unique;
use strict;
use parent qw(IMPL::SQL::Schema::Constraint::Index);

__PACKAGE__->PassThroughArgs;
__PACKAGE__->RegisterAlias('unique');

1;