id(); $table->timestamps(); $table->string('title'); $table->text('description'); $table->foreignId('creator_user_id')->constrained('users'); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('projects'); } };