From e1cd1777e3d76b8f3b67d8d415215dc7e70ba424 Mon Sep 17 00:00:00 2001 From: "P. Reis" Date: Fri, 13 Sep 2024 10:30:10 -0300 Subject: [PATCH] test: add author_search table in createTestDB to drop it after use --- src/test.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/test.ts b/src/test.ts index 45946f00..00bf4354 100644 --- a/src/test.ts +++ b/src/test.ts @@ -63,6 +63,7 @@ export async function createTestDB() { 'pubkey_domains', 'nostr_events', 'event_zaps', + 'author_search', ] ) { await kysely.schema.dropTable(table).ifExists().cascade().execute();