🗃️ Remove updatedAt field from Result
This commit is contained in:
@ -242,7 +242,6 @@ model PublicTypebot {
|
||||
model Result {
|
||||
id String @id @default(cuid())
|
||||
createdAt DateTime @default(now())
|
||||
updatedAt DateTime @default(now()) @updatedAt
|
||||
typebotId String
|
||||
variables Json
|
||||
isCompleted Boolean
|
||||
|
@ -0,0 +1,2 @@
|
||||
-- AlterTable
|
||||
ALTER TABLE "Result" DROP COLUMN "updatedAt";
|
@ -223,7 +223,6 @@ model PublicTypebot {
|
||||
model Result {
|
||||
id String @id @default(cuid())
|
||||
createdAt DateTime @default(now())
|
||||
updatedAt DateTime @default(now()) @updatedAt
|
||||
typebotId String
|
||||
variables Json
|
||||
isCompleted Boolean
|
||||
|
Reference in New Issue
Block a user