This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
create extension if not exists "uuid-ossp"; | |
create table business ( | |
id uuid default uuid_generate_v4() primary key, | |
name character varying not null | |
); | |
create table customer ( | |
id uuid default uuid_generate_v4() primary key, | |
business_id uuid references business(id), |
NewerOlder