diff --git a/bubbly/builtin/schema.bubbly b/bubbly/builtin/schema.bubbly index 8fb4f2d5..ca090bba 100644 --- a/bubbly/builtin/schema.bubbly +++ b/bubbly/builtin/schema.bubbly @@ -277,7 +277,6 @@ table "test_run" { } field "name" { type = string - unique = true } field "elapsed" { type = number diff --git a/bubbly/builtin/schema_gen.ts b/bubbly/builtin/schema_gen.ts index bf6b0951..e03c2b9b 100644 --- a/bubbly/builtin/schema_gen.ts +++ b/bubbly/builtin/schema_gen.ts @@ -44,6 +44,7 @@ export interface _event_wrap { export interface release_entry { name?: string; result?: boolean; + reason?: string; release?: release; release_criteria?: release_criteria; _resource?: _resource; diff --git a/bubbly/builtin/tables_gen.go b/bubbly/builtin/tables_gen.go index 068182d8..b9e4bf82 100644 --- a/bubbly/builtin/tables_gen.go +++ b/bubbly/builtin/tables_gen.go @@ -196,7 +196,7 @@ var BuiltinTables = core.Tables{ fields( field("tool", cty.String, false), field("type", cty.String, false), - field("name", cty.String, true), + field("name", cty.String, false), field("elapsed", cty.Number, false), field("result", cty.Bool, false), ),