From dd6ec9c01b782934e7043f5840600be0b96b321b Mon Sep 17 00:00:00 2001 From: shockrah Date: Thu, 7 May 2026 20:38:46 -0700 Subject: [PATCH] ffs how did this happen --- collector/db/init.sql | 35 +++++++++++++++++++++++++++++++++++ collector/db/items.sql | 0 2 files changed, 35 insertions(+) delete mode 100644 collector/db/items.sql diff --git a/collector/db/init.sql b/collector/db/init.sql index 4ee354a..b215564 100644 --- a/collector/db/init.sql +++ b/collector/db/init.sql @@ -1,2 +1,37 @@ +-- Create our DB to work from +CREATE DATABASE collector; +\c collector + +-- Modeling the stores that we track overall +CREATE TABLE businesses ( + store_id UUID PRIMARY KEY DEFAULT gen_random_uuid(), + store_name VARCHAR(255) NOT NULL +); + +-- Modeling the products +CREATE TABLE products ( + -- Internal product ID + id UUID PRIMARY KEY DEFAULT gen_random_uuid(), + + -- Store-specific Identifiers + business_id UUID REFERENCES businesses (id) NOT NULL, + + -- Product Details + product_name VARCHAR(255) NOT NULL, + product_type VARCHAR(100), -- e.g., 'service', 'goods' + + -- Pricing (Numeric is preferred over Float for money) + -- Also tracking in USD at the time + price NUMERIC(12, 2) NOT NULL, + currency VARCHAR(100) NOT NULL, + + -- Also tracking the price per unit + unit_type VARCHAR(100) NOT NULL, -- e.g. 'item', 'weight', 'hour', etc. + + -- Tracking time that we checked + track_time TIMESTAMPTZ DEFAULT current_timestamp +); + + \i stores.sql; \i products.sql; diff --git a/collector/db/items.sql b/collector/db/items.sql deleted file mode 100644 index e69de29..0000000