We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5734847 commit 560c1b9Copy full SHA for 560c1b9
packages/runtime/test/schemas/todo/schema.ts
@@ -180,8 +180,7 @@ export const schema = {
180
password: {
181
name: "password",
182
type: "String",
183
- optional: true,
184
- attributes: [{ name: "@password" }, { name: "@omit" }]
+ optional: true
185
},
186
emailVerified: {
187
name: "emailVerified",
packages/runtime/test/schemas/todo/todo.zmodel
@@ -70,7 +70,7 @@ model User {
70
createdAt DateTime @default(now())
71
updatedAt DateTime @updatedAt
72
email String @unique @email
73
- password String? @password @omit
+ password String?
74
emailVerified DateTime?
75
name String?
76
bio String? @ignore
0 commit comments