Laravel - Database Basics and Migrations
Identify the error in this migration code:
public function up()
{
Schema::create('comments', function (Blueprint $table) {
$table->increments('id');
$table->string('text');
$table->timestamps;
});
}