Basic sql and linting

This commit is contained in:
2026-05-07 20:21:48 -07:00
commit 9fae4e8349
8 changed files with 76 additions and 0 deletions

6
collector/db/stores.sql Normal file
View File

@@ -0,0 +1,6 @@
-- 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
);