def create_table
sql ="CREATE TABLE IF NOT EXISTS user (\nid int NOT NULL,\nscreen_name text,\nPRIMARY KEY (id)\n);\nCREATE TABLE IF NOT EXISTS post (\npost_id int NOT NULL, -- twitter\345\201\264\343\201\256post\343\201\256id\ncreated_at int, -- \346\227\245\344\273\230(Ruby\343\201\247UNIX\346\231\202\351\226\223\343\201\253\345\244\211\346\217\233)\nin_reply_to_status_id int, -- \343\201\202\343\201\243\343\201\237\343\201\273\343\201\206\343\201\214\343\202\210\343\201\204\343\202\211\343\201\227\343\201\204\nin_reply_to_user_id int, -- \343\201\202\343\201\243\343\201\237\343\201\273\343\201\206\343\201\214\343\202\210\343\201\204\343\202\211\343\201\227\343\201\204\npost_text text,\nuser_id int NOT NULL,\nPRIMARY KEY (post_id)\n);\n"
@db.execute_batch(sql)
end