id(); $table->unsignedBigInteger('parent_blog_id'); $table->string('locale', 3); $table->string('title'); $table->text('content'); $table->unsignedBigInteger('user_id'); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('blogs'); } }