id(); $table->integer('kasir'); $table->string('no_transaksi'); $table->string('diskon'); $table->enum('pembayaran', ['cash', 'qris']); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('penjualan'); } };