Answers for "enum laravel migration add comment to column"

PHP
4

laravel migration add column after

Schema::table('users', function ($table) {
    $table->string('email')->after('id')->nullable();
});
Posted by: Guest on December-11-2020

Code answers related to "enum laravel migration add comment to column"

Browse Popular Code Answers by Language