Skip to content
This repository has been archived by the owner on Mar 2, 2022. It is now read-only.

Commit

Permalink
Change schema unique constraints for test_run
Browse files Browse the repository at this point in the history
  • Loading branch information
jlarfors committed May 27, 2021
1 parent 7a04c17 commit 6babc85
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
1 change: 0 additions & 1 deletion bubbly/builtin/schema.bubbly
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,6 @@ table "test_run" {
}
field "name" {
type = string
unique = true
}
field "elapsed" {
type = number
Expand Down
1 change: 1 addition & 0 deletions bubbly/builtin/schema_gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion bubbly/builtin/tables_gen.go
Original file line number Diff line number Diff line change
Expand Up @@ -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),
),
Expand Down

0 comments on commit 6babc85

Please sign in to comment.