diff --git a/database/migrations/2025_04_26_072520_tr_pembayaran.php b/database/migrations/2025_04_26_072520_tr_pembayaran.php deleted file mode 100644 index 57ca024..0000000 --- a/database/migrations/2025_04_26_072520_tr_pembayaran.php +++ /dev/null @@ -1,35 +0,0 @@ -id('id_pembayaran'); - $table->string('id_registrasi'); - $table->date('tgl_pembayaran'); - $table->decimal('total_tagihan', 12, 2); - $table->decimal('jumlah_bayar', 12, 2); - $table->enum('metode_pembayaran', ['cash', 'asuransi', 'transfer']); - $table->text('keterangan')->nullable(); - $table->timestamps(); - - $table->foreign('id_registrasi')->references('id_registrasi')->on('tr_registrasi'); - }); - } - - /** - * Reverse the migrations. - */ - public function down(): void - { - Schema::dropIfExists('tr_pembayaran'); - } -};