id(); $table->string('title', 200); $table->text('content'); $table->json('target_roles'); $table->foreignId('created_by')->nullable()->constrained('users')->nullOnDelete(); $table->timestamps(); $table->softDeletes(); }); } public function down(): void { Schema::dropIfExists('announcements'); } };