忘れがちなので自分用にメモ
SQLLite起動コマンド
sqlite3 db/development.sqlite3
テーブルのカラムを確認
PRAGMA TABLE_INFO(テーブル名);
$ sqlite3 db/development.sqlite3
SQLite version 3.8.2 2013-12-06 14:53:30
Enter ".help" for instructions
Enter SQL statements terminated with a ";"
sqlite> PRAGMA TABLE_INFO(reviews);
0|id|INTEGER|1||1
1|book_id|integer|0||0
2|body|text|0||0
3|created_at|datetime|1||0
4|updated_at|datetime|1||0
sqlite>
SQLLite停止コマンド
.exit