You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ALTER TABLE {{ .SchemaName | default "public"}}.fevm_transactions
8
+
ADD COLUMN IF NOT EXISTS "from_filecoin_address" text;
9
+
ALTER TABLE {{ .SchemaName | default "public"}}.fevm_transactions
10
+
ADD COLUMN IF NOT EXISTS "to_filecoin_address" text;
11
+
12
+
ALTER TABLE {{ .SchemaName | default "public"}}.fevm_transactions
13
+
ADD COLUMN IF NOT EXISTS "from_actor_name" text;
14
+
ALTER TABLE {{ .SchemaName | default "public"}}.fevm_transactions
15
+
ADD COLUMN IF NOT EXISTS "to_actor_name" text;
16
+
17
+
ALTER TABLE {{ .SchemaName | default "public"}}.fevm_transactions
18
+
ADD COLUMN IF NOT EXISTS "message_cid" text;
19
+
20
+
COMMENT ON COLUMN {{ .SchemaName | default "public"}}.fevm_transactions.from_filecoin_address IS 'Filecoin Address of the sender.';
21
+
COMMENT ON COLUMN {{ .SchemaName | default "public"}}.fevm_transactions.to_filecoin_address IS 'Filecoin Address of the receiver.';
22
+
COMMENT ON COLUMN {{ .SchemaName | default "public"}}.fevm_transactions.from_actor_name IS 'Fully-versioned human-readable identifier of sender (From).';
23
+
COMMENT ON COLUMN {{ .SchemaName | default "public"}}.fevm_transactions.to_actor_name IS 'Fully-versioned human-readable identifier of receiver (To).';
24
+
COMMENT ON COLUMN {{ .SchemaName | default "public"}}.fevm_transactions.message_cid IS 'Filecoin Message Cid';
0 commit comments