Answers for "use table column in migration laravel"

PHP
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 "use table column in migration laravel"

Browse Popular Code Answers by Language