Skip to content

Commit e932a6e

Browse files
committed
revert table name change
1 parent 64f2342 commit e932a6e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

liquibase/changes/feat_task_execution_log.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
-- One record per orchestration run (process level).
33
-- Mirrors the BatchExecution concept from DatasetTraceService (Datastore),
44
-- allowing future migration of batch_process_dataset, batch_datasets, gbfs_validator.
5-
CREATE TABLE IF NOT EXISTS TaskRun (
5+
CREATE TABLE IF NOT EXISTS task_run (
66
id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
77
task_name VARCHAR NOT NULL,
88
run_id VARCHAR NOT NULL,
@@ -18,7 +18,7 @@ CREATE TABLE IF NOT EXISTS TaskRun (
1818
-- One record per entity/workflow execution within a run.
1919
-- entity_id is nullable for tasks that do not operate on a specific entity.
2020
-- Mirrors the DatasetTrace concept from DatasetTraceService (Datastore).
21-
CREATE TABLE IF NOT EXISTS TaskExecutionLog (
21+
CREATE TABLE IF NOT EXISTS task_execution_log (
2222
id SERIAL PRIMARY KEY,
2323
task_run_id UUID REFERENCES task_run(id),
2424
task_name VARCHAR NOT NULL,

0 commit comments

Comments
 (0)