increments('id'); $table->integer('category'); $table->boolean('pinned')->default(false); $table->text('title'); $table->text('content'); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('information'); } }