export const foo = sqliteTable("foo", {
isFooBar: integer("is_foo_bar", { mode: "boolean" })
.notNull()
.default(0)
// ^ Argument of type '0' is not assignable to parameter of type 'boolean | SQL<unknown>'.ts(2345)
});
export const foo = sqliteTable("foo", {
isFooBar: integer("is_foo_bar", { mode: "boolean" })
.notNull()
.default(0)
// ^ Argument of type '0' is not assignable to parameter of type 'boolean | SQL<unknown>'.ts(2345)
});