Does Drizzle support type CUID?

SSlavi4/22/2023
In Prisma i can use: id String @id @default(cuid())
Do we have similar solutions?
UUUnknown User4/22/2023
Message Not Public
Sign In & Join Server To View
Bbloberenober4/22/2023
Also, we have plans to add TS-side defaults to the columns to support such cases
Mmilon275/18/2023
so setting up default cuid or nano id is not possible for now right, it will be in future ?
Mmilon275/18/2023
createdAt: datetime("created_at").notNull().default(?????)

how to set current date in the default datetime column?
Bbloberenober5/18/2023
not possible with the schema yes
Bbloberenober5/18/2023
you can just provide the value when you insert the row