Skip to content

Commit

Permalink
feat: add schema "public.speakers"
Browse files Browse the repository at this point in the history
  • Loading branch information
toshick committed May 16, 2024
1 parent 4ff89e0 commit 232417a
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions supabase/schema.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
create table if not exists public.speakers (
id uuid not null primary key default uuid_generate_v4(),
user_id uuid references auth.users on delete cascade not null,
speaker_title varchar(100) not null,
speaker_description varchar(100) not null,
speaker_comment varchar(100) not null,
speaker_doc_title varchar(100) not null,
speaker_doc_url varchar(100) not null,
speaker_time_from timestamp with time zone default timezone('utc' :: text, now()) not null,
speaker_time_duration int(10) not null,
speaker_place varchar(100) not null,
created_at timestamp with time zone default timezone('utc' :: text, now()) not null,
updated_at timestamp with time zone default timezone('utc' :: text, now()) not null
);

0 comments on commit 232417a

Please sign in to comment.