export const userProfilesTable = sqliteTable('user_profiles', {
id: text('id').primaryKey(),
...
user_info: text('user_info', { mode: 'json' }).$type<UserInfo>(),
});
export const userProfilesTable = sqliteTable('user_profiles', {
id: text('id').primaryKey(),
...
user_info: text('user_info', { mode: 'json' }).$type<UserInfo>(),
});