A lot of things

This commit is contained in:
2026-06-16 16:21:43 +02:00
parent 4f9f6c63b3
commit 7e1e26f20b
126 changed files with 7917 additions and 204 deletions

View File

@@ -12,7 +12,22 @@ return new class extends Migration
public function up(): void
{
Schema::create('news', function (Blueprint $table) {
$table->id();
$table->string('title');
$table->string('slug')->unique();
$table->foreignId('category_id')->nullable()->constrained('categories')->nullOnDelete();
$table->longText('description');
$table->enum('state', [ 'draft', 'pending', 'published', 'locked', 'rejected', 'hidden' ] )->default('draft');
$table->foreignId('entry_id')->nullable()->constrained('entries')->nullOnDelete();
$table->string('relevant_link', 500 )->nullable();
$table->string('youtube_link', 500 )->nullable();
$table->unsignedBigInteger( 'user_id' ); // xf_user_id
$table->unsignedBigInteger( 'comments_thread_id' )->nullable(); // xf_thread
$table->softDeletes();
$table->timestamps();
});
}