web/schema.sql
Seán C McCord 3819ce6f14 further updates for modern pgsql
Signed-off-by: Seán C McCord <ulexus@gmail.com>
2022-07-24 14:37:34 -04:00

7 lines
211 B
SQL

CREATE TABLE contact_requests (
id UUID PRIMARY KEY NOT NULL DEFAULT gen_random_uuid()::UUID,
name VARCHAR(128) NOT NULL,
email VARCHAR(128) NOT NULL,
received TIMESTAMPTZ DEFAULT now() NOT NULL
);