export const users = mysqlTable('users_table', {
id: serial().primaryKey(),
providerId: varchar({ length: 255 }).notNull().unique(),
})
const db = yield* MysqlDrizzle.MysqlDrizzle
yield* db.insert(users) // error here
export const users = mysqlTable('users_table', {
id: serial().primaryKey(),
providerId: varchar({ length: 255 }).notNull().unique(),
})
const db = yield* MysqlDrizzle.MysqlDrizzle
yield* db.insert(users) // error here