CREATE
TABLE
my_table
(
category_id Uuid
NOT
NULL
,
id Uuid
,
PRIMARY KEY
(
category_id
,
id
)
)