10-04-2026

This commit is contained in:
Kevin Adametz 2026-04-10 17:18:17 +02:00
parent 4d6b4930b2
commit 4bb89aad8c
836 changed files with 52961 additions and 5950 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
{
public function up(): void
{
Schema::create('flux_cms_contents', function (Blueprint $table) {
$table->id();
$table->string('group')->index();
$table->string('key');
$table->string('type')->default('text');
$table->json('value')->nullable();
$table->integer('order')->default(0);
$table->timestamps();
$table->unique(['group', 'key']);
});
}
public function down(): void
{
Schema::dropIfExists('flux_cms_contents');
}
};

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
{
public function up(): void
{
Schema::create('flux_cms_downloads', function (Blueprint $table) {
$table->id();
$table->json('title');
$table->json('description')->nullable();
$table->string('category');
$table->string('file_path')->nullable();
$table->string('thumbnail')->nullable();
$table->boolean('is_published')->default(true);
$table->integer('order')->default(0);
$table->timestamps();
$table->index('category');
});
}
public function down(): void
{
Schema::dropIfExists('flux_cms_downloads');
}
};

View file

@ -0,0 +1,33 @@
<?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::create('flux_cms_linkedin_posts', function (Blueprint $table) {
$table->id();
$table->string('linkedin_id')->nullable()->unique();
$table->json('title');
$table->json('excerpt')->nullable();
$table->json('content')->nullable();
$table->string('author')->nullable();
$table->date('date')->nullable();
$table->string('url')->nullable();
$table->string('image')->nullable();
$table->json('tags')->nullable();
$table->string('source')->default('manual');
$table->boolean('is_published')->default(true);
$table->integer('order')->default(0);
$table->timestamps();
});
}
public function down(): void
{
Schema::dropIfExists('flux_cms_linkedin_posts');
}
};

View file

@ -0,0 +1,27 @@
<?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::create('flux_cms_faqs', function (Blueprint $table) {
$table->id();
$table->string('category')->index();
$table->json('question');
$table->json('answer');
$table->json('help')->nullable();
$table->boolean('is_published')->default(true);
$table->integer('order')->default(0);
$table->timestamps();
});
}
public function down(): void
{
Schema::dropIfExists('flux_cms_faqs');
}
};

View file

@ -0,0 +1,35 @@
<?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::create('flux_cms_news_items', function (Blueprint $table) {
$table->id();
$table->string('icon')->nullable();
$table->json('text');
$table->json('title');
$table->json('excerpt')->nullable();
$table->json('content')->nullable();
$table->string('image')->nullable();
$table->date('date')->nullable();
$table->string('author')->nullable();
$table->string('link')->nullable();
$table->string('pdf_path')->nullable();
$table->json('pdf_open_text')->nullable();
$table->json('pdf_download_text')->nullable();
$table->boolean('is_published')->default(true);
$table->integer('order')->default(0);
$table->timestamps();
});
}
public function down(): void
{
Schema::dropIfExists('flux_cms_news_items');
}
};

View file

@ -0,0 +1,24 @@
<?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::create('flux_cms_industries', function (Blueprint $table) {
$table->id();
$table->json('name');
$table->boolean('is_published')->default(true);
$table->integer('order')->default(0);
$table->timestamps();
});
}
public function down(): void
{
Schema::dropIfExists('flux_cms_industries');
}
};

View file

@ -0,0 +1,38 @@
<?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::create('flux_cms_media', function (Blueprint $table) {
$table->id();
$table->string('filename');
$table->string('disk')->default('public');
$table->string('path');
$table->string('type')->default('image');
$table->string('mime_type')->nullable();
$table->unsignedBigInteger('file_size')->default(0);
$table->unsignedInteger('original_width')->nullable();
$table->unsignedInteger('original_height')->nullable();
$table->json('alt_text')->nullable();
$table->json('title')->nullable();
$table->string('collection')->nullable()->index();
$table->json('conversions')->nullable();
$table->boolean('is_published')->default(true);
$table->unsignedInteger('order')->default(0);
$table->timestamps();
$table->index(['type', 'collection']);
$table->index('is_published');
});
}
public function down(): void
{
Schema::dropIfExists('flux_cms_media');
}
};

View file

@ -0,0 +1,33 @@
<?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::create('flux_cms_search_index', function (Blueprint $table) {
$table->id();
$table->string('item_id')->unique();
$table->string('route');
$table->json('route_params')->nullable();
$table->json('category');
$table->string('title_key')->nullable();
$table->json('title_fallback')->nullable();
$table->string('description_key')->nullable();
$table->string('description_fallback_key')->nullable();
$table->json('description_fallback_text')->nullable();
$table->json('keywords');
$table->boolean('is_published')->default(true);
$table->integer('order')->default(0);
$table->timestamps();
});
}
public function down(): void
{
Schema::dropIfExists('flux_cms_search_index');
}
};