7 lines
169 B
SQL
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
|
|
);
|