style fixing

This commit is contained in:
Roberto Guagliardo
2025-07-09 02:37:23 +02:00
parent ca5719474c
commit 195f20bb69
23 changed files with 68 additions and 51 deletions

View File

@@ -9,7 +9,8 @@ return new class extends Migration
/**
* Run the migrations.
*/
public function up(): void {
public function up(): void
{
Schema::create('work_experiences', function (Blueprint $table) {
$table->id();
$table->string('werkgever');

View File

@@ -20,7 +20,6 @@ return new class extends Migration
});
}
/**
* Reverse the migrations.
*/

View File

@@ -1,13 +1,13 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
public function up(): void {
public function up(): void
{
Schema::create('education', function (Blueprint $table) {
$table->id();
$table->string('opleiding'); // vergelijkbaar met 'werkgever'
@@ -19,7 +19,8 @@ return new class extends Migration
});
}
public function down(): void {
public function down(): void
{
Schema::dropIfExists('education');
}
};

View File

@@ -22,5 +22,4 @@ return new class extends Migration
$table->dropColumn('type');
});
}
};