Files
APP/database/migrations/2025_10_29_154434_creat_candidates_table.php
2025-11-19 15:18:35 +00:00

34 lines
676 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('candidates', function (Blueprint $table) {
$table->id();
$table->string('title');
$table->string ('description');
$table->string('status');
$table->string ('work_experience');
$table->string('job_title');
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('candidates');
}
};