Traditional relational databases have structure, so we use migrations to manage that structure in Laravel.
This is cool, until you find yourself creating tables for things that you don't need tables for, because none of the tables' columns act as foreign keys to keys on other tables.
E.g. a user_settings table would have a structure like
| id | user_id | key | value |
|---|