Create sqlite db with 4 tables using vagrant machine initialisation on ubuntu
- Download sourcode from git and change directory to sqlite-using-vagrant
git clone https://github.com/ankurpatel18/sqlite-using-vagrant.git cd sqlite-using-vagrant
- Start Vagrant machines
vagrant up
- Use SSH to go inside vagrant machine
vagrant ssh server1
- You will find newdatabage.db in user folder
sqlite3 newdatabage.db
- you can check tables using below commands
.tables
Answer should be "studentInfo", "addressInfo", "collegeInfo" and "subjectsInfo".