Changing back signature type to char(88) and account_key to char(44)

This commit is contained in:
godmodegalactus 2023-12-22 21:42:48 +01:00
parent a47f4254aa
commit 921dce82bd
No known key found for this signature in database
GPG Key ID: 22DA4A30887FDA3C
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ CREATE TABLE banking_stage_results_2.blocks (
CREATE TABLE banking_stage_results_2.accounts(
acc_id bigserial primary key,
account_key text,
account_key char(44),
UNIQUE (account_key)
);