This is the CS353 Database Systems course term project repository.
examplesetting.txt --> settings.py
python manage.py shell -c 'from django.core.management import utils; print(utils.get_random_secret_key())'
Paste this to YOUR_SECRET_KEY
python manage.py createsuperuser
python manage.py migrate
to create tables
python manage.py runserver
to run server
After running first time you should add forign key to employee table
alter table employee add branch_id int;
alter table employee add foreign key (branch_id) references branch(branch_id);