text('bio')->nullable()->change(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('profiles', function (Blueprint $table) { $table->string('bio')->nullable()->change(); }); } }