37 lines
993 B
PHP
37 lines
993 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('diskons', function (Blueprint $table) {
|
|
$table->id();
|
|
$table->string('nama_diskon')->nullable();
|
|
$table->string('kode_diskon')->nullable();
|
|
$table->string('jumlah_diskon')->nullable();
|
|
$table->string('keterangan_diskon')->nullable();
|
|
|
|
$table->unsignedBigInteger("updated_by")->nullable();
|
|
$table->unsignedBigInteger("created_by")->nullable();
|
|
$table->unsignedBigInteger("deleted_by")->nullable();
|
|
$table->softDeletes();
|
|
$table->timestamps();
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*/
|
|
public function down(): void
|
|
{
|
|
Schema::dropIfExists('diskons');
|
|
}
|
|
};
|