How to remove the space between timestamp and precision?
When I run drizzle kit generate
drizzle-kit generate:pg --config=custom.config.ts
drizzle-kit generate:pg --config=custom.config.ts
, I got
ALTER TABLE "Requests" ALTER COLUMN "createdAt" SET DATA TYPE timestamp (3);
ALTER TABLE "Requests" ALTER COLUMN "createdAt" SET DATA TYPE timestamp (3);
I already have the table with timestamp(3) but it was generated because there was space between timestamp and precision. How to solve this problem? I'm using