string('bio', 160)->default(''); $table->text('url')->default(''); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('users', function (Blueprint $table) { $table->dropColumn('bio'); $table->dropColumn('url'); }); } }