Skip to content

Commit fff908d

Browse files
schema.sql updated ExecStatus
1 parent 7536d9e commit fff908d

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

db/schema.sql

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ CREATE TABLE IF NOT EXISTS pending_transactions_archive (
2626
output TEXT,
2727
executed_by VARCHAR(255) NOT NULL,
2828
duration_ms BIGINT,
29+
ExecStatus BOOLEAN NOT NULL DEFAULT FALSE,
2930
created_at TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT NOW()
3031
);
3132

@@ -41,6 +42,7 @@ CREATE TABLE IF NOT EXISTS results_transactions_archive (
4142
output TEXT,
4243
executed_by VARCHAR(255) NOT NULL,
4344
duration_ms BIGINT,
45+
ExecStatus BOOLEAN NOT NULL DEFAULT FALSE,
4446
created_at TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT NOW()
4547
);
4648

0 commit comments

Comments
 (0)