Update tambah tombol Penyesuaian perubahan AKB Perubahan
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
class CreateMstSisaSalurTable extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function up()
|
||||
{
|
||||
Schema::create('mst_sisa_salur', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->string("tahun",4);
|
||||
$table->string("kode_rekening",50);
|
||||
$table->decimal("jumlah", 19,2);
|
||||
$table->string("dokumen",100)->nullable();
|
||||
$table->timestamps();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function down()
|
||||
{
|
||||
Schema::dropIfExists('mst_dau_rinci');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user