File tree Expand file tree Collapse file tree 2 files changed +6
-7
lines changed Expand file tree Collapse file tree 2 files changed +6
-7
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 @@ -317,13 +317,12 @@ static MIGRATIONS: &[&str] = &[
317
317
date_added TIMESTAMPTZ DEFAULT NOW() NOT NULL,
318
318
last_heartbeat_at TIMESTAMPTZ,
319
319
benchmark_set INTEGER NOT NULL,
320
- is_active BOOLEAN DEFAULT FALSE NOT NULL,
321
-
322
- -- Given the current setup, we do not want 2 collectors that are active
323
- -- with the same target using the same benchmark set.
324
- CONSTRAINT collector_config_target_bench_active_uniq
325
- UNIQUE (target, benchmark_set, is_active)
320
+ is_active BOOLEAN DEFAULT FALSE NOT NULL
326
321
);
322
+ -- Given the current setup, we do not want 2 collectors that are active
323
+ -- with the same target using the same benchmark set.
324
+ CREATE UNIQUE INDEX collector_config_target_bench_active_uniq ON collector_config
325
+ (target, benchmark_set, is_active) WHERE is_active = TRUE;
327
326
"# ,
328
327
] ;
329
328
You can’t perform that action at this time.
0 commit comments