unsignedBigInteger('created_by')->nullable()->after('created_at'); $table->unsignedBigInteger('updated_by')->nullable()->after('updated_at'); }); } /** * Reverse the migrations. */ public function down(): void { Schema::table('penawaran', function (Blueprint $table) { $table->dropColumn('created_by'); $table->dropColumn('updated_by'); }); } };