increments('id')->unsigned(); $table->string('name'); $table->string('slug'); $table->longText('description'); $table->boolean('status'); $table->boolean('type'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('articles'); } }