· 5 years ago · Oct 19, 2020, 12:54 PM
1CREATE TABLE IF NOT EXISTS polls (
2 id uuid PRIMARY KEY DEFAULT uuid_generate_v4()
3 , initiator_id uuid NOT NULL REFERENCES users(id)
4 , notify_at timestamptz NOT NULL
5 , start_at timestamptz NOT NULL
6 , end_at timestamptz NOT NULL
7 , updated_at timestamptz NOT NULL DEFAULT clock_timestamp()
8 , created_at timestamptz NOT NULL DEFAULT clock_timestamp()
9 , config jsonb NOT NULL
10 , status text NOT NULL
11 )
12