Skip to content

Commit

Permalink
Remove uid field from entity
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Farries authored and roboquat committed Oct 7, 2022
1 parent c428154 commit 390379b
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions components/gitpod-db/src/typeorm/entity/db-oauth-auth-code.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
import { CodeChallengeMethod, OAuthAuthCode, OAuthClient, OAuthScope } from "@jmondi/oauth2-server";
import { Column, Entity, JoinColumn, ManyToOne, PrimaryColumn } from "typeorm";
import { Transformer } from "../transformer";
import { TypeORM } from "../typeorm";
import { DBUser } from "./db-user";

@Entity({ name: "d_b_oauth_auth_code_entry" })
Expand Down Expand Up @@ -64,7 +63,4 @@ export class DBOAuthAuthCodeEntry implements OAuthAuthCode {
nullable: false,
})
scopes: OAuthScope[];

@Column(TypeORM.UUID_COLUMN_TYPE)
uid: string;
}

0 comments on commit 390379b

Please sign in to comment.