fix: migration file

This commit is contained in:
Mohamed Sohail 2024-11-25 14:22:28 +03:00
parent defde73bd4
commit d79aaafcd1
Signed by: kamikazechaser
GPG Key ID: 7DD45520C01CD85D

View File

@ -2,6 +2,6 @@ CREATE TABLE IF NOT EXISTS ownership_change (
id INT GENERATED ALWAYS AS IDENTITY PRIMARY KEY,
tx_id INT REFERENCES tx(id),
previous_owner VARCHAR(42) NOT NULL DEFAULT '0x0000000000000000000000000000000000000000',
new_owner VARCHAR(42) NOT NULL DEFAULT '0x0000000000000000000000000000000000000000'.
new_owner VARCHAR(42) NOT NULL DEFAULT '0x0000000000000000000000000000000000000000',
contract_address VARCHAR(42) NOT NULL DEFAULT '0x0000000000000000000000000000000000000000'
);