I already have tables with some data and I'm trying establish crud of them. But in my tables columns' names don't match each other. For example I have table `questions` with columns `id` and `content` and table `answers` with columns `id`, `question_id`, and `content`.
How can I set relation between this tables without changing columns' names? Thank for advance.