Laravel - Database Basics and Migrations
Given this migration snippet, what will happen when running
php artisan migrate?
public function up()
{
Schema::create('posts', function (Blueprint $table) {
$table->id();
$table->string('title');
$table->text('content');
$table->timestamps();
});
}