type Author = {
name: string;
role: string;
};
const books = pgTable('books', {
bookId: serial('book_id').primaryKey(),
title: text('title'),
authors: text('authors').array().$type<Author>(),
});
type Author = {
name: string;
role: string;
};
const books = pgTable('books', {
bookId: serial('book_id').primaryKey(),
title: text('title'),
authors: text('authors').array().$type<Author>(),
});