SIM Barang Habis Pakai
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
<?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('simbhpjenis', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->string('kodejenis', 150)->nullable();
|
||||
$table->string('jenis', 150)->nullable();
|
||||
$table->string('satuan', 150)->nullable();
|
||||
$table->timestamp('created_at')->useCurrent();
|
||||
$table->timestamp('updated_at')->useCurrent();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::dropIfExists('simbhpjenis');
|
||||
}
|
||||
};
|
||||
@@ -0,0 +1,37 @@
|
||||
<?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('simbhpreport', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->integer('tanggal')->nullable();
|
||||
$table->integer('bulan')->nullable();
|
||||
$table->integer('tahun')->nullable();
|
||||
$table->text('deskripsi')->nullable();
|
||||
$table->integer('pemasukan')->nullable();
|
||||
$table->integer('pengeluaran')->nullable();
|
||||
$table->string('jenis', 150)->nullable();
|
||||
$table->string('keterangan', 150)->nullable();
|
||||
$table->string('marking', 150)->nullable();
|
||||
$table->timestamp('created_at')->useCurrent();
|
||||
$table->timestamp('updated_at')->useCurrent();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::dropIfExists('simbhpreport');
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user