id(); $table->unsignedBigInteger('user_id')->nullable(); $table->text('body')->nullable(); $table->unsignedInteger('status')->default(1); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('articles'); } }