fix schema

This commit is contained in:
Riccardo Balbo 2024-10-20 09:38:27 +02:00 committed by k00b
parent 6a23aac6f9
commit 319db6dea6
2 changed files with 4 additions and 4 deletions

View File

@ -11,8 +11,8 @@ ALTER TYPE "WalletType" ADD VALUE 'LNC';
ALTER TYPE "WalletType" ADD VALUE 'WEBLN';
-- AlterTable
ALTER TABLE "Wallet" ADD COLUMN "canReceive" BOOLEAN NOT NULL DEFAULT false,
ADD COLUMN "canSend" BOOLEAN NOT NULL DEFAULT true;
ALTER TABLE "Wallet" ADD COLUMN "canReceive" BOOLEAN NOT NULL DEFAULT true,
ADD COLUMN "canSend" BOOLEAN NOT NULL DEFAULT false;
-- CreateTable
CREATE TABLE "WalletWebLn" (

View File

@ -195,8 +195,8 @@ model Wallet {
enabled Boolean @default(true)
priority Int @default(0)
user User @relation(fields: [userId], references: [id], onDelete: Cascade)
canReceive Boolean @default(false)
canSend Boolean @default(true)
canReceive Boolean @default(true)
canSend Boolean @default(false)
// NOTE: this denormalized json field exists to make polymorphic joins efficient
// when reading wallets ... it is populated by a trigger when wallet descendants update