Skip to content

Commit

Permalink
* refactor(query.jl): rename 'def' field to 'core' in maketable function
Browse files Browse the repository at this point in the history
  • Loading branch information
singularitti committed May 23, 2023
1 parent 2fa2cd3 commit 6069cde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/query.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand Down

0 comments on commit 6069cde

Please sign in to comment.