Skip to content

Commit

Permalink
chore: sync the db (#582)
Browse files Browse the repository at this point in the history
* chore: remove useless table

* chore: sync the db migration

* chore: fix ci
  • Loading branch information
xingwanying authored Dec 10, 2024
1 parent 613ee11 commit 4dccb75
Show file tree
Hide file tree
Showing 10 changed files with 181 additions and 324 deletions.
30 changes: 0 additions & 30 deletions client/types/database.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -163,36 +163,6 @@ export type Database = {
};
Relationships: [];
};
github_app_authorization: {
Row: {
code: string | null;
created_at: string;
expires_at: string | null;
id: number;
installation_id: string | null;
permissions: Json | null;
token: string | null;
};
Insert: {
code?: string | null;
created_at?: string;
expires_at?: string | null;
id?: number;
installation_id?: string | null;
permissions?: Json | null;
token?: string | null;
};
Update: {
code?: string | null;
created_at?: string;
expires_at?: string | null;
id?: number;
installation_id?: string | null;
permissions?: Json | null;
token?: string | null;
};
Relationships: [];
};
github_repo_config: {
Row: {
created_at: string;
Expand Down
Loading

0 comments on commit 4dccb75

Please sign in to comment.