id(); $table->unsignedBigInteger('published_by'); $table->foreign('published_by')->references('id')->on('users'); $table->string('language'); $table->string('title'); $table->text('body'); $table->boolean('published')->default(false); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('blogs'); } };