I found how to do this:
I wrote FK to the table in a new query window:
ALTER TABLE [dbo].[myTable] WITH CHECK ADD CONSTRAINT [FK_myTable_myTableHeaders] FOREIGN KEY([ID]) REFERENCES [dbo].[myTableHeaders] ([_ID]) ON DELETE CASCADE GO
How I was able to confirm this.
source share