From 909460018b8d687467aa2f1934f18303225e491d Mon Sep 17 00:00:00 2001 From: rahmatrafli1 Date: Fri, 13 Dec 2024 08:55:06 +0700 Subject: [PATCH] Revert "Menghapus kolom yang mengandung detail pada tabel kjpp" This reverts commit 907240e003ae782357072df21df823ef92e240c1. --- .../2024_12_11_102623_delete_kjpp_table.php | 36 ------------------- 1 file changed, 36 deletions(-) delete mode 100644 database/migrations/2024_12_11_102623_delete_kjpp_table.php diff --git a/database/migrations/2024_12_11_102623_delete_kjpp_table.php b/database/migrations/2024_12_11_102623_delete_kjpp_table.php deleted file mode 100644 index 7ddba24..0000000 --- a/database/migrations/2024_12_11_102623_delete_kjpp_table.php +++ /dev/null @@ -1,36 +0,0 @@ -dropColumn(['detail_email_kantor', 'detail_nama_pimpinan', 'detail_nomor_hp_pimpinan', 'detail_nama_pic_reviewer', 'detail_nomor_hp_pic_reviewer', 'detail_nama_pic_admin', 'detail_nomor_hp_pic_admin', 'detail_nama_pic_marketing', 'detail_nomor_hp_pic_marketing']); - }); - } - - /** - * Reverse the migrations. - */ - public function down(): void - { - Schema::table('kjpp', function (Blueprint $table) { - $table->string('detail_email_kantor')->nullable(); - $table->string('detail_nama_pimpinan')->nullable(); - $table->string('detail_nomor_hp_pimpinan')->nullable(); - $table->string('detail_nama_pic_reviewer')->nullable(); - $table->string('detail_nomor_hp_pic_reviewer')->nullable(); - $table->string('detail_nama_pic_admin')->nullable(); - $table->string('detail_nomor_hp_pic_admin')->nullable(); - $table->string('detail_nama_pic_marketing')->nullable(); - $table->string('detail_nomor_hp_pic_marketing')->nullable(); - }); - } -};