Remove extra internal id property

This commit is contained in:
Noel Bundick 2020-07-28 02:20:20 +00:00
Родитель 765fab4c1f
Коммит 32c5a7e9cb
6 изменённых файлов: 5 добавлений и 8 удалений

Просмотреть файл

@ -181,7 +181,6 @@ stages:
volumes:
- volume: reference
path: /reference
id: 1
name: benchmark1
author: author1
mode: mode1
@ -190,7 +189,6 @@ updatedAt: 2020-07-27T22:32:43.284Z
% node build/src/cli/sds.js show candidate candidate1
id: 1
name: candidate1
author: author1
benchmark: benchmark1
@ -207,7 +205,6 @@ volumes:
- name: reference
type: AzureBlob
target: 'https://sample.blob.core.windows.net/reference'
id: 1
name: suite1
author: author1
benchmark: benchmark1

Просмотреть файл

@ -8,7 +8,7 @@ import { jsonColumn } from './decorators';
export class Benchmark extends Model<Benchmark> implements IBenchmark {
@Column({
type: DataType.STRING,
unique: true,
primaryKey: true,
})
name!: string;

Просмотреть файл

@ -6,7 +6,7 @@ import { ICandidate } from '../../interfaces';
export class Candidate extends Model<Candidate> implements ICandidate {
@Column({
type: DataType.STRING,
unique: true,
primaryKey: true,
})
name!: string;

Просмотреть файл

@ -8,7 +8,7 @@ import { jsonColumn } from './decorators';
export class Result extends Model<Result> implements IResult {
@Column({
type: DataType.STRING,
unique: true,
primaryKey: true,
})
name!: string;

Просмотреть файл

@ -14,7 +14,7 @@ import { jsonColumn } from './decorators';
export class Run extends Model<Run> implements IRun {
@Column({
type: DataType.STRING,
unique: true,
primaryKey: true,
})
name!: string;

Просмотреть файл

@ -8,7 +8,7 @@ import { jsonColumn } from './decorators';
export class Suite extends Model<Suite> implements ISuite {
@Column({
type: DataType.STRING,
unique: true,
primaryKey: true,
})
name!: string;