You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CREATE TABLE clinic (id SERIAL PRIMARY KEY, name TEXT);
CREATE TABLE clinic_role (id SERIAL PRIMARY KEY, name TEXT);
CREATE TABLE occasion_template (id SERIAL PRIMARY KEY, name TEXT);
CREATE TABLE occasion (id SERIAL PRIMARY KEY, date TIMESTAMP WITH TIME ZONE, at_clinic INTEGER REFERENCES clinic, template INTEGER REFERENCES occasion_template);
CREATE TABLE volunteer (id SERIAL PRIMARY KEY, name TEXT, phone TEXT, priv_level INTEGER, active_at INTEGER REFERENCES clinic);