🚀 feat(news): add news management with upload functionality and category selection in the association module

This commit is contained in:
fsociety
2024-10-25 15:02:23 +02:00
parent 421d60e42b
commit 1bf8c66b35
7 changed files with 422 additions and 0 deletions

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 {
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('notifications', function (Blueprint $table) {
$table->id();
$table->foreignId('einundzwanzig_pleb_id')->constrained()->cascadeOnDelete();
$table->string('name');
$table->text('description')->nullable();
$table->unsignedInteger('category');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('notifications');
}
};