Remove alias cache never used

This commit is contained in:
Bryan Ashby 2023-01-28 12:59:56 -07:00
parent 0ca67f6729
commit 2a75d55b42
No known key found for this signature in database
GPG Key ID: C2C1B501E4EFD994
1 changed files with 0 additions and 11 deletions

View File

@ -490,17 +490,6 @@ dbs.message.run(
ON actor_cache (actor_id);`
);
// Mapping of known aliases for a fully qualified Actor ID
// generally obtained via WebFinger
dbs.activitypub.run(
`CREATE TABLE IF NOT EXISTS actor_alias_cache (
actor_id VARCHAR NOT NULL, -- Fully qualified Actor ID/URL
actor_alias_id VARCHAR NOT NULL, -- Alias such the user's "profile URL"
UNIQUE(actor_alias_id)
);`
);
// ActivityPub Collections of various types such as followers, following, likes, ...
dbs.activitypub.run(
`CREATE TABLE IF NOT EXISTS collection (