import { GeneratedAlways } from 'kysely' const tableName = 'like' export interface Like { uri: string cid: string creator: string subject: string subjectCid: string via: string | null viaCid: string | null createdAt: string indexedAt: string sortAt: GeneratedAlways } export type PartialDB = { [tableName]: Like }