Skip to content

Commit 5f0bf92

Browse files
committed
fix: just use INSERT when updating db_config
1 parent e15717e commit 5f0bf92

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stacks-signer/src/signerdb.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -561,7 +561,7 @@ static SCHEMA_7: &[&str] = &[
561561

562562
static SCHEMA_8: &[&str] = &[
563563
CREATE_INDEXES_8,
564-
"INSERT OR REPLACE INTO db_config (version) VALUES (8);",
564+
"INSERT INTO db_config (version) VALUES (8);",
565565
];
566566

567567
impl SignerDb {

0 commit comments

Comments
 (0)