add 'extra' to produce result
[dbsrgits/SQL-Translator-2.0-ish.git] / lib / SQL / Translator / Object / Constraint.pm
CommitLineData
4f4fd192 1use MooseX::Declare;
2class SQL::Translator::Object::Constraint {
f49a2a49 3 use MooseX::Types::Moose qw(ArrayRef Bool HashRef Maybe Str Undef);
4f4fd192 4 use MooseX::AttributeHelpers;
f49a2a49 5 use SQL::Translator::Types qw(Column Table);
4f4fd192 6 extends 'SQL::Translator::Object';
f49a2a49 7
8 has 'table' => (
9 is => 'rw',
10 isa => Table,
11 required => 1,
12 weak_ref => 1,
13 );
4f4fd192 14
15 has 'name' => (
16 is => 'rw',
526e74d1 17 isa => Maybe[Str],
4f4fd192 18 required => 1
19 );
20
21 has 'columns' => (
22 metaclass => 'Collection::Hash',
23 is => 'rw',
24 isa => HashRef[Column],
25 provides => {
26 exists => 'exists_column',
27 keys => 'column_ids',
526e74d1 28 values => 'get_columns',
4f4fd192 29 get => 'get_column',
51700db2 30 set => 'add_column',
4f4fd192 31 },
32 default => sub { my %hash = (); tie %hash, 'Tie::IxHash'; return \%hash },
33 );
34
35 has 'type' => (
36 is => 'rw',
37 isa => Str,
38 required => 1
39 );
526e74d1 40
b750d2f1 41 has 'deferrable' => (
42 is => 'rw',
43 isa => Bool,
44 default => 0
45 );
46
47 has 'expression' => (
48 is => 'rw',
49 isa => Str,
50 );
51
d63c8da0 52 has 'reference_table' => (
53 isa => Maybe[Str],
54 is => 'rw',
55 );
56
57 has 'reference_columns' => (
58 isa => ArrayRef | Undef,
59 is => 'rw',
60 auto_deref => 1
61 );
62
51700db2 63 around add_column(Column $column) { $self->$orig($column->name, $column) }
64
6b4be44b 65 method get_fields { $self->get_columns }
66 method fields { $self->column_ids }
67 method field_names { $self->column_ids }
68
69 method reference_fields { $self->reference_columns }
b750d2f1 70
71 method match_type { }
4f4fd192 72}