fix: Add a new migration script for creating the buffered_transfer_proofs table

This commit is contained in:
binarybaron 2024-07-02 01:19:37 +02:00
parent 415323e4fc
commit 293a0bd49b
2 changed files with 5 additions and 6 deletions

View File

@ -22,10 +22,4 @@ CREATE TABLE if NOT EXISTS peer_addresses
(
peer_id TEXT NOT NULL,
address TEXT NOT NULL
);
CREATE TABLE if NOT EXISTS buffered_transfer_proofs
(
swap_id TEXT PRIMARY KEY NOT NULL,
proof TEXT NOT NULL
);

View File

@ -0,0 +1,5 @@
CREATE TABLE if NOT EXISTS buffered_transfer_proofs
(
swap_id TEXT PRIMARY KEY NOT NULL,
proof TEXT NOT NULL
);