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