update: change default launch_status project schema

This commit is contained in:
MTG2000
2022-09-18 16:09:09 +03:00
parent 6a045b6c13
commit 87751cefc1
2 changed files with 3 additions and 1 deletions

View File

@@ -0,0 +1,2 @@
-- AlterTable
ALTER TABLE "Project" ALTER COLUMN "launch_status" SET DEFAULT E'Launched';

View File

@@ -146,7 +146,7 @@ model Project {
lightning_address String?
lnurl_callback_url String?
tagline String @default("")
launch_status String @default("")
launch_status String @default("Launched")
hashtag String @default("")
category Category @relation(fields: [category_id], references: [id])