File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -304,7 +304,7 @@ whether it is active and when it last had activity denoted by `last_heartbeat_at
304
304
Columns:
305
305
306
306
* ** id** (` id ` ): A unique identifier for the collector.
307
- * ** target** (` text NOT NULL ` ): The ISA of the collector for example; ` AArch64 ` .
307
+ * ** target** (` text NOT NULL ` ): The ISA of the collector for example; ` aarch64-unknown-linux-gnu ` .
308
308
* ** name** (` text NOT NULL ` ): Unique name for the collector.
309
309
* ** date_added** (` timestamptz NOT NULL ` ): When the collector was added
310
310
* ** last_heartbeat_at** (` timestamptz ` ): When the collector last updated this
Original file line number Diff line number Diff line change @@ -322,7 +322,7 @@ static MIGRATIONS: &[&str] = &[
322
322
-- Given the current setup, we do not want 2 collectors that are active
323
323
-- with the same target using the same benchmark set.
324
324
CONSTRAINT collector_config_target_bench_active_uniq
325
- UNIQUE (target, benchmark_set, is_active)
325
+ UNIQUE (target, benchmark_set, is_active) WHERE is_active = TRUE
326
326
);
327
327
"# ,
328
328
] ;
You can’t perform that action at this time.
0 commit comments