You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
DO $$ BEGINCREATETYPE "genres" AS ENUM('Thriller', 'Young Adult', 'Children's', 'Historical Fiction', 'Autobiography');EXCEPTION WHEN duplicate_object THEN null;END $$;
Which causes the following sql error
PostgresError: unterminated quoted string at or near "');
EXCEPTION
WHEN duplicate_object THEN null;
END "
Expected behavior
the migration should instead look like this
DO $$ BEGINCREATETYPE "genres" AS ENUM('Thriller', 'Young Adult', 'Children''s', 'Historical Fiction', 'Autobiography');
EXCEPTION
WHEN duplicate_object THEN null;
END $$;
Environment & setup
Postgres, node, pnpm
The text was updated successfully, but these errors were encountered:
What version of
drizzle-orm
are you using?0.29.3
What version of
drizzle-kit
are you using?0.20.9
Describe the Bug
I have this line in an enum
which generates the following migration
Which causes the following sql error
Expected behavior
the migration should instead look like this
Environment & setup
Postgres, node, pnpm
The text was updated successfully, but these errors were encountered: