Answers for "migration create new table laravel"

PHP
23

php artisan make migration

php artisan make:migration create_users_table
Posted by: Guest on January-14-2021
1

create new column in Laravel migrations

public function up()
{
    Schema::table('users', function($table) {
        $table->integer('paid');
    });
}
Posted by: Guest on June-18-2021

Code answers related to "migration create new table laravel"

Browse Popular Code Answers by Language