Dodaj kolejne pole w istniejącej migracji Laravel
php artisan make:migration add_paid_to_users_table --table=users
Blushing Bear
php artisan make:migration add_paid_to_users_table --table=users
php artisan make:migration add_store_id_to_users_table --table=users
Schema::table('users', function($table)
{
$table->string('phone_nr')->after('id');
});
Schema::table('users', function (Blueprint $table) {
$table->dateTime('verify_date')->nullable()->after("password_updated_at");
});