Extract keys to their own table, match keyID #816

Merged
floatingghost merged 19 commits from keys-extraction into develop 2024-10-30 15:08:12 +00:00
Showing only changes of commit c5a44a59db - Show all commits

View file

@ -9,7 +9,5 @@ def change do
add :private_key, :text add :private_key, :text

Might :binary be more efficient to not have to reparse the text representation each time we actually verify/sign something? On the other hand, for local users, serving the text representation via AP fetches might be more common than actually using the key...

Might `:binary` be more efficient to not have to reparse the text representation each time we actually verify/sign something? On the other hand, for local users, serving the text representation via AP fetches might be more common than actually using the key...
timestamps() timestamps()
end end
create unique_index(:signing_keys, [:key_id])
end end
end end
floatingghost marked this conversation as resolved Outdated

key_id already is the primary key; manually creating an index here just duplicates the already existing unique primary key index

`key_id` already is the primary key; manually creating an index here just duplicates the already existing unique primary key index