Created Resume component model
Some checks failed
linter / quality (push) Successful in 3m16s
tests / ci (push) Failing after 6m21s

This commit is contained in:
2025-08-16 13:13:00 +02:00
parent e3444ef799
commit fb3a5be414
6 changed files with 237 additions and 0 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');
}
};