SQLite3::SQLException: table "categories" already exists: CREATE TABLE "categories" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL
class DropCategoriesTable < ActiveRecord::Migration
     def up
       drop_table :categories
     end
     def down
       raise ActiveRecord::IrreversibleMigration
     end
end
