I was wondering if there is bad practice to have file_table { id, name, status}and extra_data table { id, fileId FK(file.id), otherData}. So far, all my tables go forward, and I never needed to get the identifier of one table, and then make a request to get more data using the identifier.
Is this a bad practice, and if so, why?
user34537
source
share