file-management-system/database/migrations/2023_04_10_024809_create_jobs_table.php

32 lines
689 B
PHP
Raw Normal View History

2023-04-11 09:21:20 +00:00
<?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('jobs', function (Blueprint $table) {
$table->id();
2023-04-12 10:06:33 +00:00
$table->foreignId('sub_directorat_id');
2023-04-11 09:21:20 +00:00
$table->string('kode',2);
2023-04-12 10:06:33 +00:00
$table->string('name',50);
2023-04-11 09:21:20 +00:00
$table->timestamps();
$table->softDeletes();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('jobs');
}
};