CREATE TABLE sessions( created_at timestamp DEFAULT now(), session_id uuid DEFAULT gen_random_uuid(), user_id integer REFERENCES users(id) ); CREATE TABLE users( id integer PRIMARY KEY serial, user_name text password text);