Last active
July 16, 2018 18:29
-
-
Save abrarShariar/f672f529cb63d88d54cad43d782fd2ba to your computer and use it in GitHub Desktop.
database schema - adbms project
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
user_type | |
id int primary key | |
type varchar | |
doctors | |
id int primary key | |
name varchar | |
designation varchar | |
title varchar | |
available_hours array(time) | |
join_date datetime | |
date_of_birth datetime | |
specialization varchar | |
type varchar | |
patients | |
id int primary | |
name varchar | |
date_of_admin varchar | |
disease varchar | |
critical_level int | |
release_date datetime | |
address varchar | |
doctor_type | |
id int primary | |
type varchar | |
patient_type | |
id int primary | |
type varchar | |
disease_type | |
id int primary key | |
type varchar | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment