boolean('enable_profile_page')->default(false); $table->string('profile_alias')->nullable(true); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('users', function (Blueprint $table) { $table->dropColumn('enable_profile_page'); $table->dropColumn('profile_alias'); }); } }