integer('completed_at')->nullable(); }); } /** * Reverse the migrations. */ public function down(): void { // Drop Completed at column Schema::table('projects', function (Blueprint $table) { $table->dropColumn('completed_at'); }); } };