rollbackできない時の対処法。
SQLite3::SQLException: table "users" already exists: CREATE TABLE "hoge"
$rails dbconsole
該当するテーブルを削除
sqlite> drop table hoge;
削除されたか確認する
sqlite> .schema
CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL);
CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version");```