Hi, this used to work at the end of November, but I just found out that exporting SQL to PostgreSQL ignores the primary keyword.
DBML
id UUID [primary key, default: `gen_random_uuid()`]
November 19, 2023
CREATE TABLE "locations" (
"id" UUID PRIMARY KEY DEFAULT (gen_random_uuid()),
Today
CREATE TABLE "locations" (
"id" UUID DEFAULT (gen_random_uuid()),