Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/ghostfolio/src/commit/2c19d8c8e7bb4266342a986cf109ce023d793402/prisma/migrations/20210703194509_added_balance_to_account/migration.sql You should set ROOT_URL correctly, otherwise the web may not work correctly.

7 lines
217 B

-- AlterEnum
ALTER TYPE "AccountType" ADD VALUE 'CASH';
-- AlterTable
ALTER TABLE "Account" ADD COLUMN "balance" DOUBLE PRECISION NOT NULL DEFAULT 0,
ADD COLUMN "currency" "Currency" NOT NULL DEFAULT E'USD';