Notizfeld und CSS

This commit is contained in:
2026-03-30 01:19:39 +02:00
parent 4c94066bf9
commit b34bfb0a47
8 changed files with 126 additions and 50 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('pre_applications', function (Blueprint $table) {
$table->text('notes')->nullable()->before('created_at');
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('pre_applications', function (Blueprint $table) {
$table->dropColumn('notes');
});
}
};