@@ -15,7 +15,7 @@ use lightning::util::ser::Readable;
1515use lightning_block_sync:: http:: HttpEndpoint ;
1616use tokio_postgres:: Config ;
1717
18- pub ( crate ) const SCHEMA_VERSION : i32 = 11 ;
18+ pub ( crate ) const SCHEMA_VERSION : i32 = 12 ;
1919pub ( crate ) const SNAPSHOT_CALCULATION_INTERVAL : u32 = 3600 * 24 ; // every 24 hours, in seconds
2020/// If the last update in either direction was more than six days ago, we send a reminder
2121/// That reminder may be either in the form of a channel announcement, or in the form of empty
@@ -117,11 +117,12 @@ pub(crate) fn db_channel_update_table_creation_query() -> &'static str {
117117
118118pub ( crate ) fn db_index_creation_query ( ) -> & ' static str {
119119 "
120- CREATE INDEX IF NOT EXISTS channel_updates_seen_with_id_direction_blob ON channel_updates(seen) INCLUDE (id, direction, blob_signed);
121120 CREATE INDEX IF NOT EXISTS channel_updates_seen_scid ON channel_updates(seen, short_channel_id);
122121 CREATE INDEX IF NOT EXISTS channel_updates_scid_dir_seen_asc ON channel_updates(short_channel_id, direction, seen);
123122 CREATE INDEX IF NOT EXISTS channel_updates_scid_dir_seen_desc_with_id ON channel_updates(short_channel_id ASC, direction ASC, seen DESC) INCLUDE (id);
124123 CREATE UNIQUE INDEX IF NOT EXISTS channel_updates_key ON channel_updates (short_channel_id, direction, timestamp);
124+ CREATE INDEX IF NOT EXISTS channel_updates_seen ON channel_updates(seen);
125+ CREATE INDEX IF NOT EXISTS channel_updates_timestamp_desc ON channel_updates(timestamp DESC);
125126 "
126127}
127128
@@ -254,6 +255,12 @@ pub(crate) async fn upgrade_db(schema: i32, client: &mut tokio_postgres::Client)
254255 tx. execute ( "UPDATE config SET db_schema = 11 WHERE id = 1" , & [ ] ) . await . unwrap ( ) ;
255256 tx. commit ( ) . await . unwrap ( ) ;
256257 }
258+ if schema >= 1 && schema <= 11 {
259+ let tx = client. transaction ( ) . await . unwrap ( ) ;
260+ tx. execute ( "DROP INDEX IF EXISTS channel_updates_seen_with_id_direction_blob" , & [ ] ) . await . unwrap ( ) ;
261+ tx. execute ( "UPDATE config SET db_schema = 12 WHERE id = 1" , & [ ] ) . await . unwrap ( ) ;
262+ tx. commit ( ) . await . unwrap ( ) ;
263+ }
257264 if schema <= 1 || schema > SCHEMA_VERSION {
258265 panic ! ( "Unknown schema in db: {}, we support up to {}" , schema, SCHEMA_VERSION ) ;
259266 }
0 commit comments