mirror of https://github.com/ghostfolio/ghostfolio
committed by
GitHub
14 changed files with 384 additions and 116 deletions
File diff suppressed because it is too large
@ -1,34 +0,0 @@ |
|||||
import { ClipboardModule } from '@angular/cdk/clipboard'; |
|
||||
import { TextFieldModule } from '@angular/cdk/text-field'; |
|
||||
import { CommonModule } from '@angular/common'; |
|
||||
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; |
|
||||
import { FormsModule, ReactiveFormsModule } from '@angular/forms'; |
|
||||
import { MatButtonModule } from '@angular/material/button'; |
|
||||
import { MatCheckboxModule } from '@angular/material/checkbox'; |
|
||||
import { MatDialogModule } from '@angular/material/dialog'; |
|
||||
import { MatFormFieldModule } from '@angular/material/form-field'; |
|
||||
import { MatInputModule } from '@angular/material/input'; |
|
||||
import { MatStepperModule } from '@angular/material/stepper'; |
|
||||
import { RouterModule } from '@angular/router'; |
|
||||
|
|
||||
import { ShowAccessTokenDialog } from './show-access-token-dialog.component'; |
|
||||
|
|
||||
@NgModule({ |
|
||||
declarations: [ShowAccessTokenDialog], |
|
||||
imports: [ |
|
||||
ClipboardModule, |
|
||||
CommonModule, |
|
||||
FormsModule, |
|
||||
MatButtonModule, |
|
||||
MatCheckboxModule, |
|
||||
MatDialogModule, |
|
||||
MatFormFieldModule, |
|
||||
MatInputModule, |
|
||||
MatStepperModule, |
|
||||
ReactiveFormsModule, |
|
||||
RouterModule, |
|
||||
TextFieldModule |
|
||||
], |
|
||||
schemas: [CUSTOM_ELEMENTS_SCHEMA] |
|
||||
}) |
|
||||
export class ShowAccessTokenDialogModule {} |
|
@ -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