Skip to content

Commit

Permalink
alter table answers drop column data
Browse files Browse the repository at this point in the history
  • Loading branch information
sipec committed Nov 11, 2024
1 parent 53b697d commit e3be21c
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion backend/supabase/answers.sql
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ create table if not exists
color text,
contract_id text,
created_time timestamp with time zone default now(),
data jsonb,
id text primary key default random_alphanumeric (12) not null,
index integer,
is_other boolean default false not null,
Expand Down
3 changes: 0 additions & 3 deletions common/src/supabase/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ export type Database = {
color: string | null
contract_id: string | null
created_time: string | null
data: Json | null
id: string
index: number | null
is_other: boolean
Expand All @@ -38,7 +37,6 @@ export type Database = {
color?: string | null
contract_id?: string | null
created_time?: string | null
data?: Json | null
id?: string
index?: number | null
is_other?: boolean
Expand All @@ -62,7 +60,6 @@ export type Database = {
color?: string | null
contract_id?: string | null
created_time?: string | null
data?: Json | null
id?: string
index?: number | null
is_other?: boolean
Expand Down

0 comments on commit e3be21c

Please sign in to comment.