aboutsummaryrefslogtreecommitdiffstats
path: root/packages/pipeline/src/entities/Relayer.ts
diff options
context:
space:
mode:
authorAlex Browne <stephenalexbrowne@gmail.com>2018-11-09 02:53:18 +0800
committerFred Carlsen <fred@sjelfull.no>2018-12-06 19:04:25 +0800
commit2dfdc19c9ed56785d679af47fec92c133c5a2e3a (patch)
tree2dc4d9630e85a43513fbe7a13d5afced79d20df6 /packages/pipeline/src/entities/Relayer.ts
parent012134001a3f0f60c938c453dc34d78e83e195c1 (diff)
downloaddexon-sol-tools-2dfdc19c9ed56785d679af47fec92c133c5a2e3a.tar
dexon-sol-tools-2dfdc19c9ed56785d679af47fec92c133c5a2e3a.tar.gz
dexon-sol-tools-2dfdc19c9ed56785d679af47fec92c133c5a2e3a.tar.bz2
dexon-sol-tools-2dfdc19c9ed56785d679af47fec92c133c5a2e3a.tar.lz
dexon-sol-tools-2dfdc19c9ed56785d679af47fec92c133c5a2e3a.tar.xz
dexon-sol-tools-2dfdc19c9ed56785d679af47fec92c133c5a2e3a.tar.zst
dexon-sol-tools-2dfdc19c9ed56785d679af47fec92c133c5a2e3a.zip
Rename table and column names
Diffstat (limited to 'packages/pipeline/src/entities/Relayer.ts')
-rw-r--r--packages/pipeline/src/entities/Relayer.ts12
1 files changed, 6 insertions, 6 deletions
diff --git a/packages/pipeline/src/entities/Relayer.ts b/packages/pipeline/src/entities/Relayer.ts
index 605355fa8..94b5232a8 100644
--- a/packages/pipeline/src/entities/Relayer.ts
+++ b/packages/pipeline/src/entities/Relayer.ts
@@ -1,23 +1,23 @@
import { Column, Entity, PrimaryColumn } from 'typeorm';
-@Entity()
+@Entity({ name: 'relayers' })
export class Relayer {
@PrimaryColumn() public uuid!: string;
@Column() public name!: string;
@Column() public url!: string;
- @Column({ nullable: true, type: String })
+ @Column({ nullable: true, type: String, name: 'sra_http_endpoint' })
public sraHttpEndpoint!: string | null;
- @Column({ nullable: true, type: String })
+ @Column({ nullable: true, type: String, name: 'sra_ws_endpoint' })
public sraWsEndpoint!: string | null;
- @Column({ nullable: true, type: String })
+ @Column({ nullable: true, type: String, name: 'app_url' })
public appUrl!: string | null;
// TODO(albrow): Add exchange contract or protocol version?
// TODO(albrow): Add network ids for addresses?
- @Column({ type: 'varchar', array: true })
+ @Column({ type: 'varchar', array: true, name: 'fee_recipient_addresses' })
public feeRecipientAddresses!: string[];
- @Column({ type: 'varchar', array: true })
+ @Column({ type: 'varchar', array: true, name: 'taker_addresses' })
public takerAddresses!: string[];
}