mirror of https://github.com/ghostfolio/ghostfolio
committed by
GitHub
22 changed files with 402 additions and 93 deletions
@ -1 +1 @@ |
|||||
custom: ['https://www.buymeacoffee.com/ghostfolio'] |
buy_me_a_coffee: ghostfolio |
||||
|
|||||
File diff suppressed because it is too large
@ -1,4 +1,4 @@ |
|||||
export interface ShowAccessTokenDialogParams { |
export interface UserAccountRegistrationDialogParams { |
||||
deviceType: string; |
deviceType: string; |
||||
needsToAcceptTermsOfService: boolean; |
needsToAcceptTermsOfService: boolean; |
||||
} |
} |
||||
@ -0,0 +1,17 @@ |
|||||
|
-- CreateTable |
||||
|
CREATE TABLE "public"."AssetProfileResolution" ( |
||||
|
"createdAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP, |
||||
|
"currency" TEXT NOT NULL, |
||||
|
"dataSourceOrigin" "public"."DataSource" NOT NULL, |
||||
|
"dataSourceTarget" "public"."DataSource" NOT NULL, |
||||
|
"id" TEXT NOT NULL, |
||||
|
"requestCount" INTEGER NOT NULL DEFAULT 1, |
||||
|
"symbolOrigin" TEXT NOT NULL, |
||||
|
"symbolTarget" TEXT NOT NULL, |
||||
|
"updatedAt" TIMESTAMP(3) NOT NULL, |
||||
|
|
||||
|
CONSTRAINT "AssetProfileResolution_pkey" PRIMARY KEY ("id") |
||||
|
); |
||||
|
|
||||
|
-- CreateIndex |
||||
|
CREATE UNIQUE INDEX "AssetProfileResolution_dataSourceOrigin_symbolOrigin_key" ON "public"."AssetProfileResolution"("dataSourceOrigin", "symbolOrigin"); |
||||
Loading…
Reference in new issue