Example when using prisma ``` model User { ... CompletedOrdersId String @map("completed_orders_id") @@map(["users"]) } ``` Must i go through all this stress or just doing it for the table name is enough Must i still do it for each column?