Hi Rafael,
When I try to regenerate dbix schema class on oracle with multiple schema
instance, I got the same column repeated multiple times where the actual
unique column only one for the requested instance. Below is an example of
expected result and the actual result:
Expected:
__PACKAGE__->add_unique_constraint("xxx_uc", ["xxx"]);
Actual (assumed I have 5 oracle schema instances):
__PACKAGE__->add_unique_constraint(
"xxx_uc",
[
"xxx",
"xxx",
"xxx",
"xxx",
"xxx",
],
);
On Sat, Sep 10, 2011 at 12:35 PM, Rafael Kitover via RT <
bug-DBIx-Class-Schema-Loader@rt.cpan.org> wrote:
Show quoted text