aboutsummaryrefslogtreecommitdiffstats
path: root/packages/pipeline/src/entities/exchange_cancel_event.ts
diff options
context:
space:
mode:
authorJake Ellowitz <jake.ellowitz@gmail.com>2018-11-14 01:57:02 +0800
committerFred Carlsen <fred@sjelfull.no>2018-12-13 01:15:56 +0800
commitcaeb59a9ae4d4281e9b5f80f39903e7b9ad559aa (patch)
treeb9d2c0bdf6ef85fbb9526f3fe5d5293c3362047a /packages/pipeline/src/entities/exchange_cancel_event.ts
parentea95de7d9d496b97639b94ee463b133d282bb42b (diff)
downloaddexon-sol-tools-caeb59a9ae4d4281e9b5f80f39903e7b9ad559aa.tar
dexon-sol-tools-caeb59a9ae4d4281e9b5f80f39903e7b9ad559aa.tar.gz
dexon-sol-tools-caeb59a9ae4d4281e9b5f80f39903e7b9ad559aa.tar.bz2
dexon-sol-tools-caeb59a9ae4d4281e9b5f80f39903e7b9ad559aa.tar.lz
dexon-sol-tools-caeb59a9ae4d4281e9b5f80f39903e7b9ad559aa.tar.xz
dexon-sol-tools-caeb59a9ae4d4281e9b5f80f39903e7b9ad559aa.tar.zst
dexon-sol-tools-caeb59a9ae4d4281e9b5f80f39903e7b9ad559aa.zip
Pointing entities to raw schema
Fix linter issues
Diffstat (limited to 'packages/pipeline/src/entities/exchange_cancel_event.ts')
-rw-r--r--packages/pipeline/src/entities/exchange_cancel_event.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/pipeline/src/entities/exchange_cancel_event.ts b/packages/pipeline/src/entities/exchange_cancel_event.ts
index 6d0c3bc32..781e1c4bb 100644
--- a/packages/pipeline/src/entities/exchange_cancel_event.ts
+++ b/packages/pipeline/src/entities/exchange_cancel_event.ts
@@ -2,7 +2,7 @@ import { Column, Entity, PrimaryColumn } from 'typeorm';
import { AssetType } from '../types';
-@Entity({ name: 'exchange_cancel_events' })
+@Entity({ name: 'exchange_cancel_events', schema: 'raw' })
export class ExchangeCancelEvent {
@PrimaryColumn({ name: 'contract_address' })
public contractAddress!: string;