view Lib/IMPL/SQL/Schema/Constraint/Unique.pm @ 172:068acfe903c3

corrected schema resolution mechanism
author sourcer
date Mon, 20 Jun 2011 23:42:44 +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;