import { GeneratedAlways } from 'kysely' export interface AccountPref { id: GeneratedAlways name: string valueJson: string // json } export const tableName = 'account_pref' export type PartialDB = { [tableName]: AccountPref }