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