我一直在寻找一种方法来放弃Rails中的一个表并重新开始并且遇到了这个答案:Rails DB Migration - How To Drop a Table?
但是,当我运行drop_table :examples
时出现以下错误:
-bash: drop_table: command not found
这是我的create_examples
迁移文件:
def self.down
drop_table :examples
end
任何人都可以帮助指导我解决这个问题并让我了解我做错了什么吗?我需要修复它,因为此特定迁移阻止执行rake db:migrate
,从而生成以下错误:
== CreateExamples: migrating ====================================================
-- create_table(:examples)
rake aborted!
An error has occurred, this and all later migrations canceled:
SQLite3::SQLException: table "examples" already exists: CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "content" varchar(255), "user_id" integer, "created_at" datetime, "updated_at" datetime)
谢谢! (如果我需要提供更多代码,请告诉我。)
答案 0 :(得分:7)
您应该在创建新版本之前删除旧表:
def self.up
drop_table :examples
create_table :examples do |t|
#...
end
end
由于您无法真正反转drop_table
,因此您可能希望在回滚中引发异常:
def self.down
raise ActiveRecord::IrreversibleMigration
end
或许您只想保留当前的self.down
。