I have an output that is writing to a database (create) and I'd like to run the following SQL post create. How should this be handled?
ALTER table Person ALTER column PersonID integer not null
GO
ALTER table Person add primary key (PersonID)
Edit:
When adding this statement to the Post Create SQL Statement - I receive the following error.
Incorrect syntax near 'GO'