Can't use @id to decorate when id !== 'id' in Prisma

I can’t use the @id decorator in Prisma – the generator want’s the id column to be id

$ yarn rw g sdl AltIdMessage

Error 1: GraphQLDocumentError: Cannot query field "id" on type "AltIdMessage". at /Users/ajoslin/Documents/Als/Development/EPC/Development/print-on-demand-2/web/src/components/AltIdMessageCell/AltIdMessageCell.tsx:3:5

model AltIdMessage {
  state String @id
  msg   String
}