Skip to content

Commit 6f60813

Browse files
committed
use better sqlite column affinity
1 parent 0fe565c commit 6f60813

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stackslib/src/core/mempool.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -806,7 +806,7 @@ const MEMPOOL_SCHEMA_6_NONCES: &'static [&'static str] = &[
806806
const MEMPOOL_SCHEMA_7_TIME_ESTIMATES: &'static [&'static str] = &[
807807
r#"
808808
-- ALLOW NULL
809-
ALTER TABLE mempool ADD COLUMN time_estimate_ms NUMBER;
809+
ALTER TABLE mempool ADD COLUMN time_estimate_ms INTEGER;
810810
"#,
811811
r#"
812812
INSERT INTO schema_version (version) VALUES (7)

0 commit comments

Comments
 (0)