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, 15 insertions, 0 deletions
diff --git a/packages/pipeline/src/models/price.ts b/packages/pipeline/src/models/price.ts
new file mode 100644
index 000000000..9e45cc2a9
--- /dev/null
+++ b/packages/pipeline/src/models/price.ts
@@ -0,0 +1,15 @@
+const price = {
+ tableName: 'prices',
+ tableProperties: {
+ address: {
+ type: 'char(42)',
+ },
+ timestamp: {
+ type: 'timestamp',
+ },
+ price: {
+ type: 'numeric(50)',
+ },
+ },
+};
+export { price };