I’m learning ruby on rails by reading the “agile web development with rails” book. I installed ruby and rails using rvm. I’m using the default sqlite3 database, and generating models and tables is awesome.
I’d like to manually browse my db, just to see the structure.
So at the command line is run
sqlite3
and in the shell
.tables
nothing shows up… Where are my tables?
you want to run
or
as it will load your database etc.