view Lib/IMPL/SQL/Schema/Constraint/Unique.pm @ 327:6cb0d4d325d7

sync
author sergey
date Thu, 30 May 2013 20:31:37 +0400
parents 6148f89bb7bf
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;