From 3893cc68ca9ae241680e1f852cc192fa90be2d99 Mon Sep 17 00:00:00 2001 From: Siddharth Singh Date: Sat, 4 May 2024 11:57:20 +0530 Subject: [PATCH] get rid of PubkeyDomainRow interface --- src/db/DittoTables.ts | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/db/DittoTables.ts b/src/db/DittoTables.ts index d71f48ad..85ad40f2 100644 --- a/src/db/DittoTables.ts +++ b/src/db/DittoTables.ts @@ -5,7 +5,6 @@ export interface DittoTables { unattached_media: UnattachedMediaRow; author_stats: AuthorStatsRow; event_stats: EventStatsRow; - pubkey_domains: PubkeyDomainRow; } interface AuthorStatsRow { @@ -51,9 +50,3 @@ interface UnattachedMediaRow { data: string; uploaded_at: number; } - -interface PubkeyDomainRow { - pubkey: string; - domain: string; - last_updated_at: number; -}