Answers for "add another field in existing migration laravel"

PHP
6

add another field in existing migration laravel

php artisan make:migration add_paid_to_users_table --table=users
Posted by: Guest on April-30-2020
1

how set field after another field in migration in laravel

Schema::table('users', function($table)
{
    $table->string('phone_nr')->after('id');
});
Posted by: Guest on August-04-2021
2

laravel add column to table

Schema::table('users', function (Blueprint $table) {
	$table->dateTime('verify_date')->nullable()->after("password_updated_at");
});
Posted by: Guest on April-01-2020
0

how add field to table by another migration in laravel

php artisan make:migration add_store_id_to_users_table --table=users
Posted by: Guest on August-04-2021

Code answers related to "add another field in existing migration laravel"

Browse Popular Code Answers by Language