migration: local ssh port

This commit is contained in:
Andras Bacsai 2022-08-06 10:23:51 +00:00
parent b1acfba791
commit 424195880b
2 changed files with 3 additions and 0 deletions

View File

@ -0,0 +1,2 @@
-- AlterTable
ALTER TABLE "DestinationDocker" ADD COLUMN "sshLocalPort" INTEGER;

View File

@ -215,6 +215,7 @@ model DestinationDocker {
updatedAt DateTime @updatedAt
sshKeyId String?
sshKey SshKey? @relation(fields: [sshKeyId], references: [id])
sshLocalPort Int?
application Application[]
database Database[]
service Service[]