use MooseX::AttributeHelpers;
use SQL::Translator::Types qw(Column Constraint Index Schema Sequence);
use SQL::Translator::Object::Schema;
+use Tie::IxHash;
extends 'SQL::Translator::Object';
has 'name' => (
}
}
},
- default => sub { {} },
+ default => sub { my %hash = (); tie %hash, 'Tie::IxHash'; return \%hash },
);
has 'indexes' => (