php artisan make:migration add_store_id_to_users_table --table=users
Schema::table('users', function($table) { $table->string('phone_nr')->after('id'); });