customType generate type with double quotes

any solution for this?

export const identity = (name: string) => customType<{
  data: number
  notNull: true
  default: true
}>({
  dataType() {
    return 'INTEGER GENERATED ALWAYS AS IDENTITY'
  },
})(name)


generate this code:
"id" "INTEGER GENERATED ALWAYS AS IDENTITY" PRIMARY KEY NOT NULL,
Was this page helpful?