Which table is the child in the relationship?
Answer that, and you know which table needs the foreign key column, referencing the parent’s [typically] primary key. That’s for a one-to-many relationship…
A many-to-many would require you to add a third table, using the keys from both of the two tables as it’s primary key.