id(); $table->string('unique_id')->unique(); $table->text('text'); $table->boolean('completed')->default(false); $table->unsignedBigInteger('user_id')->nullable(); $table->timestamps(); $table->index(['user_id', 'completed', 'created_at']); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('dashboard_notes'); } };