-
Notifications
You must be signed in to change notification settings - Fork 102
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
eedfd10
commit 9ad43d0
Showing
20 changed files
with
405 additions
and
109 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34795,6 +34795,9 @@ | |
} | ||
} | ||
} | ||
}, | ||
"Secrets: (DEBUG build only)" : { | ||
|
||
}, | ||
"Security" : { | ||
"extractionState" : "manual", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
phoenix-shared/src/commonMain/appdb/fr.acinq.phoenix.db/migrations/8.sqm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
-- Migration: v8 -> v9 | ||
-- | ||
-- Changes: | ||
-- * Added table contact_secrets | ||
-- * Added index on table: contact_secrets | ||
-- | ||
|
||
CREATE TABLE IF NOT EXISTS contact_secrets ( | ||
secret_id BLOB NOT NULL PRIMARY KEY, | ||
contact_id TEXT NOT NULL, | ||
incoming_payment_id BLOB, | ||
created_at INTEGER NOT NULL, | ||
|
||
FOREIGN KEY(contact_id) REFERENCES contacts(id) | ||
); | ||
|
||
CREATE INDEX contact_id_index3 ON contact_secrets(contact_id); |
Oops, something went wrong.