import { ColumnType } from 'kysely' export interface Record { uri: string cid: string did: string json: string indexedAt: string takedownRef: string | null tags: ColumnType | null } export const tableName = 'record' export type PartialDB = { [tableName]: Record }