7 lines
134 B
Plaintext
7 lines
134 B
Plaintext
|
|
|
||
|
|
model Users {
|
||
|
|
id String @id @default(uuid())
|
||
|
|
createdAt DateTime @default(now())
|
||
|
|
updatedAt DateTime @updatedAt
|
||
|
|
}
|
||
|
|
|