mirror of
https://github.com/EvolutionAPI/evolution-api.git
synced 2025-07-24 17:38:40 -06:00
chore: remove indentation not necessary
This commit is contained in:
parent
16658baf99
commit
eba1dae358
@ -1,3 +1,3 @@
|
|||||||
# Please do not edit this file manually
|
# Please do not edit this file manually
|
||||||
# It should be added in your version-control system (e.g., Git)
|
# It should be added in your version-control system (i.e. Git)
|
||||||
provider = "postgresql"
|
provider = "postgresql"
|
@ -170,7 +170,6 @@ model Message {
|
|||||||
|
|
||||||
sessionId String?
|
sessionId String?
|
||||||
session IntegrationSession? @relation(fields: [sessionId], references: [id])
|
session IntegrationSession? @relation(fields: [sessionId], references: [id])
|
||||||
|
|
||||||
@@index([instanceId])
|
@@index([instanceId])
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -186,7 +185,6 @@ model MessageUpdate {
|
|||||||
messageId String
|
messageId String
|
||||||
Instance Instance @relation(fields: [instanceId], references: [id], onDelete: Cascade)
|
Instance Instance @relation(fields: [instanceId], references: [id], onDelete: Cascade)
|
||||||
instanceId String
|
instanceId String
|
||||||
|
|
||||||
@@index([instanceId])
|
@@index([instanceId])
|
||||||
@@index([messageId])
|
@@index([messageId])
|
||||||
}
|
}
|
||||||
@ -203,7 +201,6 @@ model Webhook {
|
|||||||
updatedAt DateTime @updatedAt @db.Timestamp
|
updatedAt DateTime @updatedAt @db.Timestamp
|
||||||
Instance Instance @relation(fields: [instanceId], references: [id], onDelete: Cascade)
|
Instance Instance @relation(fields: [instanceId], references: [id], onDelete: Cascade)
|
||||||
instanceId String @unique
|
instanceId String @unique
|
||||||
|
|
||||||
@@index([instanceId])
|
@@index([instanceId])
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -274,7 +271,6 @@ model Setting {
|
|||||||
updatedAt DateTime @updatedAt @db.Timestamp
|
updatedAt DateTime @updatedAt @db.Timestamp
|
||||||
Instance Instance @relation(fields: [instanceId], references: [id], onDelete: Cascade)
|
Instance Instance @relation(fields: [instanceId], references: [id], onDelete: Cascade)
|
||||||
instanceId String @unique
|
instanceId String @unique
|
||||||
|
|
||||||
@@index([instanceId])
|
@@index([instanceId])
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user