I\'m using EF migrations and have a table with a lot of data. I need to change MaxLength of a concrete column (it hadn\'t length constraints).
ALTER TABLE MyDb A
Alternatively script out the change by using
Update-Database -script
You can then take the script and run it using SQL Management Studio against the database.