boolean('encrypt_messages')->default(true); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('users', function (Blueprint $table) { $table->removeColumn('encrypt_messages'); }); } }