installation du module RH

This commit is contained in:
jeremy bayse
2026-05-09 08:24:12 +02:00
parent 7c01803f46
commit 97a8b9443d
9 changed files with 234 additions and 5 deletions

View File

@@ -0,0 +1,28 @@
<?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::table('job_positions', function (Blueprint $table) {
$table->json('fpt_metadata')->nullable()->after('ai_bypass_base_prompt');
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('job_positions', function (Blueprint $table) {
$table->dropColumn('fpt_metadata');
});
}
};