E.g. will happily generate something like this:
CREATE TABLE IF NOT EXISTS "users" (
"signed_in" timestamp | null NOT NULL
);
Where the | is an invalid character.
Or duplicated columns like:
CREATE TABLE IF NOT EXISTS "users" (
"id" serial NOT NULL PRIMARY KEY,
"id" uuid NOT NULL
)
E.g. will happily generate something like this:
Where the
|is an invalid character.Or duplicated columns like: