id(); $table->text('headline'); $table->text('content'); $table->text('link')->nullable(); $table->string('attachment')->nullable(); $table->unsignedBigInteger('enhancer_id'); $table->foreign('enhancer_id')->references('id')->on('users'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('announcements'); } };