Skip to content

Commit

Permalink
use better sqlite column affinity
Browse files Browse the repository at this point in the history
  • Loading branch information
kantai committed Sep 25, 2024
1 parent 0fe565c commit 6f60813
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stackslib/src/core/mempool.rs
Original file line number Diff line number Diff line change
Expand Up @@ -806,7 +806,7 @@ const MEMPOOL_SCHEMA_6_NONCES: &'static [&'static str] = &[
const MEMPOOL_SCHEMA_7_TIME_ESTIMATES: &'static [&'static str] = &[
r#"
-- ALLOW NULL
ALTER TABLE mempool ADD COLUMN time_estimate_ms NUMBER;
ALTER TABLE mempool ADD COLUMN time_estimate_ms INTEGER;
"#,
r#"
INSERT INTO schema_version (version) VALUES (7)
Expand Down

0 comments on commit 6f60813

Please sign in to comment.