I have built a database using EF Codefirst (In an MVC4 application).
I've since learnt, that an external tool that will access this database has name-length limitations for columns & constraints.
- Column names must be <=20 chars
- Constraint names muse be <=10 chars
I'm therefor required to change the names of the generated DB constraints. (None of my column names exceed the limitation.)
Can I achieve this without destruction?
Does the migration framework provide the tools I need for such an operation?