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-06 19:04:25 +0800
commit7f782b6af063c70db11d193335517e2ddcd5d47c (patch)
tree9c346230b6f112f10bb31a005b0cfcb28e2d4666 /packages/pipeline/src/entities/exchange_cancel_event.ts
parenta3f4264790349b2db9ca8ffd341766d30f2a60b2 (diff)
downloaddexon-0x-contracts-7f782b6af063c70db11d193335517e2ddcd5d47c.tar.gz
dexon-0x-contracts-7f782b6af063c70db11d193335517e2ddcd5d47c.tar.zst
dexon-0x-contracts-7f782b6af063c70db11d193335517e2ddcd5d47c.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;