more comments for removed tables

This commit is contained in:
einhorn_b 2023-12-19 19:42:12 +01:00
parent ca6d688344
commit 712e6f61cb
3 changed files with 4 additions and 0 deletions

View File

@ -8,7 +8,9 @@ import {
BaseEntity,
} from 'typeorm'
import { User } from '../User'
// TransactionRecipe was removed in newer migrations, so only the version from this folder can be linked
import { TransactionRecipe } from '../0001-init_db/TransactionRecipe'
// ConfirmedTransaction was removed in newer migrations, so only the version from this folder can be linked
import { ConfirmedTransaction } from './ConfirmedTransaction'
import { DecimalTransformer } from '../../src/typeorm/DecimalTransformer'
import { Decimal } from 'decimal.js-light'

View File

@ -8,6 +8,7 @@ import {
BaseEntity,
} from 'typeorm'
import { Account } from '../Account'
// TransactionRecipe was removed in newer migrations, so only the version from this folder can be linked
import { TransactionRecipe } from '../0001-init_db/TransactionRecipe'
import { AccountCommunity } from '../AccountCommunity'

View File

@ -11,6 +11,7 @@ import { Decimal } from 'decimal.js-light'
import { DecimalTransformer } from '../../src/typeorm/DecimalTransformer'
import { Account } from './Account'
// TransactionRecipe was removed in newer migrations, so only the version from this folder can be linked
import { TransactionRecipe } from '../0001-init_db/TransactionRecipe'
@Entity('confirmed_transactions')