type Wallets = {
wallet_address: string;
blockchain: string;
};
export const user = pgTable(
'user',
{
id: serial('id').primaryKey(),
wallets: jsonb('wallets').$type<Wallets[]>(),
);
type Wallets = {
wallet_address: string;
blockchain: string;
};
export const user = pgTable(
'user',
{
id: serial('id').primaryKey(),
wallets: jsonb('wallets').$type<Wallets[]>(),
);