Files
HKSingleParty/99_references/supabase-examples/edge-functions/supabase/migrations/20240423080303_sentry-functions-challenge.sql
2025-05-28 09:55:51 +08:00

8 lines
340 B
SQL

create table
public.sentry_functions_challenge (
id bigint generated by default as identity,
created_at timestamp with time zone not null default now(),
twitter text null,
constraint sentry_functions_challenge_pkey primary key (id)
) tablespace;
alter table public.sentry_functions_challenge enable row level security;