aboutsummaryrefslogtreecommitdiffstats
path: root/packages/pipeline/src/models/price.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/pipeline/src/models/price.ts')
-rw-r--r--packages/pipeline/src/models/price.ts15
1 files changed, 0 insertions, 15 deletions
diff --git a/packages/pipeline/src/models/price.ts b/packages/pipeline/src/models/price.ts
deleted file mode 100644
index 9e45cc2a9..000000000
--- a/packages/pipeline/src/models/price.ts
+++ /dev/null
@@ -1,15 +0,0 @@
-const price = {
- tableName: 'prices',
- tableProperties: {
- address: {
- type: 'char(42)',
- },
- timestamp: {
- type: 'timestamp',
- },
- price: {
- type: 'numeric(50)',
- },
- },
-};
-export { price };