Admin function for tenant

This commit is contained in:
2026-06-21 18:00:20 +02:00
parent 12f05ceb09
commit fed54514c8
17 changed files with 827 additions and 0 deletions
@@ -0,0 +1,23 @@
<?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
{
Schema::table('tenants', function (Blueprint $table) {
$table->longText('gdpr_text')->nullable()->change();
$table->longText('impress_text')->nullable()->change();
});
}
public function down(): void
{
Schema::table('tenants', function (Blueprint $table) {
$table->string('gdpr_text')->nullable()->change();
$table->string('impress_text')->nullable()->change();
});
}
};