MIF_E31211908/database/migrations/2024_03_28_012832_penjualan...

32 lines
713 B
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('penjualan', function (Blueprint $table) {
$table->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');
}
};