Sounds like you created the table with `id SERIAL` as the column type. You'll need to perform a migr
Sounds like you created the table with
Take a look at this thread where someone asked a similar question:
Column from Integer to UUID
id SERIAL as the column type. You'll need to perform a migration to change it to something like id UUID PRIMARY KEY DEFAULT gen_random_uuid()Take a look at this thread where someone asked a similar question:
Column from Integer to UUID
