TypeError: colBuilder.buildExtraConfigColumn is not a function
hey I am building with a Sveltekit + hono + drizzle (with supabase postgres) currently and I ran into this problem after I modified my users schema to this:
export const users = pgTable('users', {
id: uuid('id').primaryKey(),
username: varchar('username', { length: 50 }).notNull().unique(),
email: varchar('email', { length: 255 }).notNull().unique(),
standardSearches: integer('standard_searches').default(2).notNull(),
comprehensiveSearches: integer('comprehensive_searches').default(2).notNull(),
hasUnlimitedAccess: boolean('has_unlimited_access').default(false).notNull(),
googleId: varchar('google_id', { length: 255 }).notNull().unique()
});
it only breaks when I add the hasUnlimitedAccess field , without it drizzle-kit push does not break
anyone knows what could be the issue? thank you in advance!
0 Replies