Files
cash-tracker/collector/db/stores.sql
2026-05-07 20:21:48 -07:00

7 lines
169 B
SQL

-- 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
);