3

我对rails很陌生,所以可能有一个简单的答案。我正在尝试将“user_category”列添加到我的“users”表中,该表引用“user_categories”表。我尝试了以下方法:

rails generate migration add_user_category_to_users user_category:integer

接着...

rails generate scaffold User_Category title:string description:text

但是在 rake db:migrate 我收到以下错误:

==  CreateUserCategories: migrating ===========================================
-- create_table(:user_categories)
rake aborted!
An error has occurred, this and all later migrations canceled:

SQLite3::SQLException: table "user_categories" already exists: CREATE TABLE "user_categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 

任何帮助,将不胜感激。

4

1 回答 1

5

Active Record 方式声称智能属于您的模型,而不是数据库。因此,诸如触发器或外键约束等将部分情报推回数据库的功能并未得到大量使用。

validates :foreign_key, :uniqueness => true 等验证是模型强制数据完整性的一种方式。关联上的 :dependent 选项允许模型在父对象被销毁时自动销毁子对象。就像在应用程序级别运行的任何东西一样,它们不能保证引用完整性,因此有些人在数据库中使用外键约束来扩充它们。

尽管 Active Record 没有提供任何工具来直接使用这些特性,但 execute 方法可以用来执行任意 SQL。你也可以使用一些插件,比如 foreigner,为 Active Record 添加外键支持(包括支持在 db/schema.rb 中转储外键)。

http://guides.rubyonrails.org/migrations.html

于 2012-11-13T22:23:52.450 回答