This note is about foreign key enforcement, as in
FOREIGN KEY column_id_here REFERENCES parent_table(target_column)
and not about putting parent’s id in the child tables
Common reasoning of using FK enforcement (split into 2):
CASCADE / SET NULL / DO NOTHING
)But:
It complicates migration