You see, I have the User table, which is the one that stores the users of my database. I am interested in adding a variable balance, so that said user can make purchases online. I'm looking at 2 options: -The first is to modify User.php to add a balance variable. This table does not have a migration like the others, hence my question. -The other option is to create a table for credit cards, with balance and foreign keys to a user.
The question is, how do I enter migrations to the User table?