2023-12-26 09:57:58 +00:00
|
|
|
create table message_waits (
|
2024-01-05 15:10:34 +00:00
|
|
|
signed_message_cid text primary key,
|
2023-12-26 09:57:58 +00:00
|
|
|
waiter_machine_id int references harmony_machines (id) on delete set null,
|
|
|
|
|
|
|
|
executed_tsk_cid text,
|
|
|
|
executed_tsk_epoch bigint,
|
|
|
|
executed_msg_cid text,
|
|
|
|
executed_msg_data jsonb,
|
|
|
|
|
|
|
|
executed_rcpt_exitcode bigint,
|
|
|
|
executed_rcpt_return bytea,
|
|
|
|
executed_rcpt_gas_used bigint
|
|
|
|
)
|