Laravel - Database Basics and Migrations
What will be the effect of running
php artisan migrate with the following migration code?Schema::table('posts', function (Blueprint $table) {
$table->text('description');
$table->boolean('published')->default(false);
});