Skip to content

Commit

Permalink
feat: details column on db, update types
Browse files Browse the repository at this point in the history
  • Loading branch information
Luisfp0 committed Oct 29, 2024
1 parent fb99a50 commit 6d79064
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/db/src/supabase/type.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ export type Database = {
RoleApplications: {
Row: {
createdAt: string
details: Json | null
id: string
meetsRequirements: boolean
roleId: string
Expand All @@ -21,6 +22,7 @@ export type Database = {
}
Insert: {
createdAt?: string
details?: Json | null
id?: string
meetsRequirements: boolean
roleId: string
Expand All @@ -30,6 +32,7 @@ export type Database = {
}
Update: {
createdAt?: string
details?: Json | null
id?: string
meetsRequirements?: boolean
roleId?: string
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
alter table "public"."RoleApplications" add column "details" jsonb;


0 comments on commit 6d79064

Please sign in to comment.