create-aomex 0.0.40 → 0.0.41
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -8,11 +8,10 @@ generator client {
|
|
|
8
8
|
provider = "prisma-client-js"
|
|
9
9
|
}
|
|
10
10
|
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
// }
|
|
11
|
+
model user {
|
|
12
|
+
id Int @id @default(autoincrement())
|
|
13
|
+
name String @unique
|
|
14
|
+
age Int @default(17)
|
|
15
|
+
created_at DateTime @default(now()) @db.Timestamp(0)
|
|
16
|
+
updated_at DateTime @default(now()) @updatedAt() @db.Timestamp(0)
|
|
17
|
+
}
|