php artisan make:migration add_store_id_to_users_table --table=users
Schema::table('users', function($table)
{
$table->string('phone_nr')->after('id');
});
php artisan make:migration add_company_id_to_users_table
//in up() method
Schema::table('users', function (Blueprint $table) {
$table->unsignedBigInteger('company_id');
});
//in down() method
Schema::table('users', function (Blueprint $table) {
$table->dropColumn('company_id');
});