Changing delete behavior on model, how does it affect my DB

1
If I change the delete behavior on my relations in my model, will this break my existing tables that contain references?
asked
1 answers
2

No, delete behavior is only applied on delete of a record. Changing the delete behavior will not change the contents of your database.

answered