initial commit
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
<?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('requests', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->unsignedBigInteger('operation_id');
|
||||
$table->unsignedBigInteger('created_by_id');
|
||||
$table->timestamps();
|
||||
$table->string('nama');
|
||||
$table->string('handphone');
|
||||
$table->string('email');
|
||||
$table->string('nik');
|
||||
$table->string('kategori');
|
||||
$table->string('tujuan');
|
||||
$table->string('status');
|
||||
$table->string('keterangan');
|
||||
$table->foreign('created_by_id')->references('id')->on('users');
|
||||
$table->foreign('operation_id')->references('id')->on('operations');
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::dropIfExists('requests');
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user