Skip to content

Instantly share code, notes, and snippets.

View yeshvantbhavnasi's full-sized avatar
🎯
Focusing

Yeshvant Bhavnasi yeshvantbhavnasi

🎯
Focusing
View GitHub Profile
@yeshvantbhavnasi
yeshvantbhavnasi / schema.sql
Created June 1, 2020 08:43
Database schema
CREATE TYPE valueType AS ENUM ('Integer', 'Float', 'Long', "String", "Options", "Scale", "Boolean" );
CREATE Type locationType As ENUM ('Registration', 'Healthcoach');
create TABLE Question
(
id SERIAL,
sectionId integer,
title varying(1000),