Hello, I hope you guys are doing great.
I wanted to know, if the auto-increment flag for columns in supported, and if yes that how we can do it.
Is it something to do with the "defaultSql" parameter?
For Example:
export const usersTable = t("users", { id: c("bigint", {primaryKey: true, defaultSql: "GENERATED ALWAYS AS IDENTITY"}), })
Hello, I hope you guys are doing great.
I wanted to know, if the auto-increment flag for columns in supported, and if yes that how we can do it.
Is it something to do with the "defaultSql" parameter?
For Example:
export const usersTable = t("users", { id: c("bigint", {primaryKey: true, defaultSql: "GENERATED ALWAYS AS IDENTITY"}), })