I know the impact of my question, but my case may be unique.
I am trying to create a delta script to apply to other test databases that change a foreign key's child table. For instance:
Table A has some_id with a foreign key pointing to a column in table B
I want to change some_id to point to a column in table C
I know this could harm and potentially ruin a system if there was already data there, but in my case there is no data in the parent table. I will simply be switching the foreign key to point to a different column of a different table.
Preferably, I would like a script to do this.