-- Your SQL goes here CREATE TABLE gamedata ( 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, turn SMALLINT NOT NULL, host_hand json, host_deck json, guest_hand json, guest_deck json ); SELECT diesel_manage_updated_at('gamedata');