I'm trying to move an existing code base to using EF6 migrations for its context against a Postgres database
After creating an initial migration, and trying to apply it to an empty database, I get errors that the contraint names already exist. It seems to be related to the truncation done by EF6 (or migrations) to handle the constraint name limit of Postgres
Is there any way to override this behavior, instead of truncation, trucate and add a hash of the full name to keep the uniqeness?
Or is there any other way to solve the issue? I guess oracle dbs have the same issue? Anyone solved it in relation to them?