AddExternalAuthToUsers::down PHP 메소드

down() 공개 메소드

Reverse the migrations.
public down ( ) : void
리턴 void
    public function down()
    {
        Schema::table('users', function (Blueprint $table) {
            $table->dropColumn('external_auth_id');
        });
    }
AddExternalAuthToUsers