User lock upload data

This commit is contained in:
Pusdatin BPKD Jkt
2022-08-12 11:03:49 +07:00
parent 23300ce262
commit 4ef399d7d5
7 changed files with 113 additions and 14 deletions
@@ -0,0 +1,33 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateMappingDbhSkpdTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('mapping_dbh_skpd', function (Blueprint $table) {
$table->id();
$table->string("kode_rekening", 50);
$table->string("kode_skpd", 50);
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('mapping_dbh_skpd');
}
}