survey-sdgs/database/migrations/2024_05_14_102034_create_su...

39 lines
1011 B
PHP
Executable File

<?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('surveys', function (Blueprint $table) {
$table->id();
$table->string('name')->nullable();
$table->text('description')->nullable();
$table->string('years')->nullable();
$table->string('status')->default('Pending');
$table->unsignedBigInteger("updated_by")->nullable();
$table->unsignedBigInteger("created_by")->nullable();
$table->unsignedBigInteger("deleted_by")->nullable();
$table->softDeletes();
$table->rememberToken();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('surveys');
}
};