id(); $table->string("content", 240); $table->unsignedInteger("likes")->default(0); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('ideas'); } };