Skip to content

Instantly share code, notes, and snippets.

View cristianc-ty's full-sized avatar

Cristian Constantinescu cristianc-ty

  • TrustYou
  • Cluj Napoca
View GitHub Profile
@cristianc-ty
cristianc-ty / db_schema.sql
Last active February 8, 2018 13:06
db_schema.sql
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),