diff --git a/schema.graphql b/schema.graphql index 38f5cc0..63e17fb 100644 --- a/schema.graphql +++ b/schema.graphql @@ -57,7 +57,7 @@ type Project @entity { totalFlags: Int! "Total attests" totalAttests: Int! - "Slug of the project" + "Url of the project" url: String "Image of the project" image: String diff --git a/src/model/generated/project.model.ts b/src/model/generated/project.model.ts index 0abce05..74e898b 100644 --- a/src/model/generated/project.model.ts +++ b/src/model/generated/project.model.ts @@ -59,7 +59,7 @@ export class Project { totalAttests!: number /** - * Slug of the project + * Url of the project */ @Column_("text", {nullable: true}) url!: string | undefined | null