MIF_E31221244/database/migrations/2024_09_26_072022_gejala.php

27 lines
567 B
PHP

<?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('gejala', function (Blueprint $table) {
$table->id();
$table->string('kode_gejala', 5)->nullable()->unique();
$table->string('gejala', 255);
});
}
public function down(): void
{
Schema::dropIfExists('gejala');
}
};