From 6069cde503cc71a1817c38f405f0dbbd95f6cb07 Mon Sep 17 00:00:00 2001 From: singularitti Date: Tue, 23 May 2023 01:07:15 -0400 Subject: [PATCH] * refactor(query.jl): rename 'def' field to 'core' in maketable function --- src/query.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/query.jl b/src/query.jl index 2cf62e9..8d3de1d 100644 --- a/src/query.jl +++ b/src/query.jl @@ -8,7 +8,7 @@ function maketable(registry) return @from job in registry begin @select { id = job.id, - def = string(job.core), + core = string(job.core), created_by = string(job.username), created_at = creationtimeof(job), started_at = starttimeof(job),