Planetscale UUID
Can anybody suggest how to use uuid as primary key in planetscale with drizzle orm?
int id column tops are 4294967295
intimport { sql } from "drizzle-orm";
import { int, time, mysqlTable } from "drizzle-orm/mysql-core";
const table = mysqlTable("table", {
int: int("int").default(42),
time: time("time").default(sql`cast("14:06:10" AS TIME)`), // << sql`` calling the function
});