Sindbad~EG File Manager
<?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('pemasukan', function (Blueprint $table) {
$table->id();
$table->string('no_inv',20);
$table->date('tgl_inv')->nullable();
$table->date('tgl_kirim')->nullable();
$table->string('tr_code',20);
$table->string('jns_tr',20);
$table->string('gudang',20);
$table->string('kode_brg',50);
$table->string('kode_kategori_brg',20);
$table->float('qty');
$table->string('sat');
$table->float('nilai');
$table->string('userid',50);
$table->timestamp('tglid')->nullable();
// $table->string('email')->unique();
// $table->timestamp('email_verified_at')->nullable();
// $table->string('password');
// $table->rememberToken();
// $table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
//
Schema::dropIfExists('pemasukan');
}
};
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists