export const usersSchema = sqliteTable('users', {
id: int().primaryKey({ autoIncrement: true }),
name: text().notNull(),
email: text().notNull().unique(),
verified: int().notNull(),
columnWithError: text(),
});
export const usersSchema = sqliteTable('users', {
id: int().primaryKey({ autoIncrement: true }),
name: text().notNull(),
email: text().notNull().unique(),
verified: int().notNull(),
columnWithError: text(),
});