@@ -1755,21 +1755,20 @@ ALTER SEQUENCE public.fiber_channels_id_seq OWNED BY public.fiber_channels.id;
17551755CREATE TABLE public .fiber_graph_channels (
17561756 id bigint NOT NULL ,
17571757 channel_outpoint character varying,
1758- funding_tx_block_number bigint ,
1759- funding_tx_index integer ,
17601758 node1 character varying,
17611759 node2 character varying,
1762- last_updated_timestamp bigint ,
17631760 created_timestamp bigint ,
1764- node1_to_node2_fee_rate numeric (30 ,0 ) DEFAULT 0 .0 ,
1765- node2_to_node1_fee_rate numeric (30 ,0 ) DEFAULT 0 .0 ,
17661761 capacity numeric (64 ,2 ) DEFAULT 0 .0 ,
17671762 chain_hash character varying,
17681763 created_at timestamp (6 ) without time zone NOT NULL ,
17691764 updated_at timestamp (6 ) without time zone NOT NULL ,
17701765 udt_id bigint ,
17711766 open_transaction_id bigint ,
1772- closed_transaction_id bigint
1767+ closed_transaction_id bigint ,
1768+ last_updated_timestamp_of_node1 bigint ,
1769+ last_updated_timestamp_of_node2 bigint ,
1770+ fee_rate_of_node1 numeric (30 ,0 ) DEFAULT 0 .0 ,
1771+ fee_rate_of_node2 numeric (30 ,0 ) DEFAULT 0 .0
17731772);
17741773
17751774
@@ -4747,7 +4746,7 @@ CREATE UNIQUE INDEX index_bitcoin_annotations_on_ckb_transaction_id ON public.bi
47474746-- Name: index_bitcoin_statistics_on_timestamp; Type: INDEX; Schema: public; Owner: -
47484747--
47494748
4750- CREATE UNIQUE INDEX index_bitcoin_statistics_on_timestamp ON public .bitcoin_statistics USING btree (" timestamp" );
4749+ CREATE INDEX index_bitcoin_statistics_on_timestamp ON public .bitcoin_statistics USING btree (" timestamp" );
47514750
47524751
47534752--
@@ -6317,6 +6316,7 @@ INSERT INTO "schema_migrations" (version) VALUES
63176316(' 20241223023654' ),
63186317(' 20241223060331' ),
63196318(' 20241225045757' ),
6320- (' 20241231022644' );
6319+ (' 20241231022644' ),
6320+ (' 20250103072945' );
63216321
63226322
0 commit comments