annotate lib/IMPL/SQL/Schema/Constraint/Index.pm @ 421:7798345304bc
ref20150831
working on IMPL::Config, removed old stuff
author |
cin |
date |
Sun, 16 Jul 2017 22:59:39 +0300 |
parents |
c6e90e02dd17 |
children |
|
rev |
line source |
407
|
1 package IMPL::SQL::Schema::Constraint::Index;
|
|
2 use strict;
|
|
3 use parent qw(IMPL::SQL::Schema::Constraint);
|
|
4
|
|
5 __PACKAGE__->PassThroughArgs;
|
|
6 __PACKAGE__->RegisterAlias('index');
|
|
7
|
|
8 sub CTOR {
|
|
9 my $this = shift;
|
|
10
|
|
11 my %colnames;
|
|
12 not grep { $colnames{$_}++ } $this->columns or die new Exception('Each column in the index can occur only once');
|
|
13 }
|
|
14
|
|
15 1;
|