หลังจากติดตั้งอุปกรณ์ MODEL User ฉันได้รับสิ่งนี้
class DeviseCreateUsers < ActiveRecord::Migration
  def self.up
    create_table(:users) do |t|
      t.database_authenticatable :null => false
      t.recoverable
      t.rememberable
      t.trackable
      # t.encryptable
      # t.confirmable
      # t.lockable :lock_strategy => :failed_attempts, :unlock_strategy => :both
      # t.token_authenticatable
      t.timestamps
    end
    add_index :users, :email,                :unique => true
    add_index :users, :reset_password_token, :unique => true
    # add_index :users, :confirmation_token,   :unique => true
    # add_index :users, :unlock_token,         :unique => true
    # add_index :users, :authentication_token, :unique => true
  end
  def self.down
    drop_table :users
  end
end
ตอนนี้ถ้าฉันทำ rake db: โยกย้ายตารางผู้ใช้จะถูกสร้างขึ้น
ฉันจะยกเลิกการย้ายข้อมูลนี้ได้อย่างไรเช่นฉันจะลบตารางผู้ใช้โดยใช้คราดอีกครั้งได้อย่างไร

UnknownMigrationVersionErrorแต่ฉันคิดว่าเป็นเพราะการย้ายข้อมูลของฉันอยู่ข้างในมีdb/migrate/mainใครรู้วิธีแก้ปัญหาสำหรับสิ่งนี้เพื่อdb:migrate:downดูในไดเร็กทอรีเฉพาะนั้นหรือไดเร็กทอรีย่อยที่โอนย้าย