aboutsummaryrefslogtreecommitdiffstats
path: root/packages/pipeline/src/models/historical_prices.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/pipeline/src/models/historical_prices.ts')
-rw-r--r--packages/pipeline/src/models/historical_prices.ts43
1 files changed, 0 insertions, 43 deletions
diff --git a/packages/pipeline/src/models/historical_prices.ts b/packages/pipeline/src/models/historical_prices.ts
deleted file mode 100644
index cf49b579e..000000000
--- a/packages/pipeline/src/models/historical_prices.ts
+++ /dev/null
@@ -1,43 +0,0 @@
-const historicalPrices = {
- tableName: 'historical_prices',
- tableProperties: {
- token: {
- type: 'varchar',
- },
- base: {
- type: 'varchar',
- },
- timestamp: {
- type: 'timestamp',
- },
- close: {
- type: 'numeric(50)',
- },
- high: {
- type: 'numeric(50)',
- },
- low: {
- type: 'numeric(50)',
- },
- open: {
- type: 'numeric(50)',
- },
- volume_from: {
- type: 'numeric(50)',
- },
- volume_to: {
- type: 'numeric(50)',
- },
- },
-};
-const logToHistoricalPricesSchema: { [log: string]: string } = {
- token: 'token',
- time: 'timestamp',
- close: 'close',
- high: 'high',
- low: 'low',
- open: 'open',
- volumefrom: 'volume_from',
- volumeto: 'volume_to',
-};
-export { historicalPrices, logToHistoricalPricesSchema };