feat: Deno DB migration
This commit is contained in:
parent
ce45cb8aca
commit
a4d56fd79a
2 changed files with 6 additions and 1 deletions
|
|
@ -0,0 +1,3 @@
|
||||||
|
-- AlterTable
|
||||||
|
ALTER TABLE "Application" ADD COLUMN "denoMainFile" TEXT;
|
||||||
|
ALTER TABLE "Application" ADD COLUMN "denoOptions" TEXT;
|
||||||
|
|
@ -92,6 +92,8 @@ model Application {
|
||||||
pythonModule String?
|
pythonModule String?
|
||||||
pythonVariable String?
|
pythonVariable String?
|
||||||
dockerFileLocation String?
|
dockerFileLocation String?
|
||||||
|
denoMainFile String?
|
||||||
|
denoOptions String?
|
||||||
createdAt DateTime @default(now())
|
createdAt DateTime @default(now())
|
||||||
updatedAt DateTime @updatedAt
|
updatedAt DateTime @updatedAt
|
||||||
settings ApplicationSettings?
|
settings ApplicationSettings?
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue