-- Your SQL goes here
CREATE TABLE users (
id uuid PRIMARY KEY NOT NULL DEFAULT gen_random_uuid(),
created_at TIMESTAMPTZ NOT NULL DEFAULT current_timestamp,
updated_at TIMESTAMPTZ NOT NULL DEFAULT current_timestamp,
username VARCHAR NOT NULL,
email VARCHAR NOT NULL,
password VARCHAR NOT NULL,
UNIQUE(username),
UNIQUE(email)
);
SELECT diesel_manage_updated_at('users');