Transformed into pivot models and Created ResumeSlotValue
Some checks failed
linter / quality (push) Successful in 3m39s
tests / ci (push) Failing after 6m30s

This commit is contained in:
2025-08-17 11:58:55 +02:00
parent c9f499cf2d
commit 08425938d4
13 changed files with 261 additions and 10 deletions

View File

@@ -0,0 +1,30 @@
<?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('resume_components', function (Blueprint $table) {
$table->id();
$table->string('vue_component_name')->unique();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('resume_components');
}
};