Bugs Fix Download BAST

This commit is contained in:
Pusdatin BPKD Jkt
2022-10-25 11:39:10 +07:00
parent eb4a62b5d4
commit e40fab54fe
3 changed files with 39 additions and 6 deletions
@@ -0,0 +1,31 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateLaporanTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('laporan', function (Blueprint $table) {
$table->id();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('laporan');
}
}