Skip to content
This repository has been archived by the owner on Aug 9, 2018. It is now read-only.

Latest commit

 

History

History
19 lines (16 loc) · 254 Bytes

README.md

File metadata and controls

19 lines (16 loc) · 254 Bytes

memories

 $ bundle install
$ bundle exec sqlite3 db/post.db
sqlite> CREATE TABLE posts (
id INTEGER PRIMARY KEY AUTOINCREMENT,
text TEXT,
img_file_name TEXT,
star_count INTEGER default 0);
sqlite>
 $ bundle exec ruby main.rb