我通过“rails generate model User name:string email:string ...”创建了一个用户表,迁移文件也被创建了。
class CreateUsers < ActiveRecord::Migration
def change
create_table :users do |t|
t.string :name
t.string :email
t.timestamps
end
end
end
现在我想在“按照教程”的电子邮件列中添加一个索引,我第一次通过使用 sqlite3 成功完成了这个。第二次通过我使用 MySql (mysql2)。再次使用生成模型创建了表格。当我运行以下命令时:
rails generate migration add_index_to_users_email
该过程以没有错误消息结束并创建迁移文件,如下所示,但没有设置任何索引..
class AddIndexToUsersEmail < ActiveRecord::Migration
def change
end
end
我期待 add_index :users, :email, unique: true
在那里看到......任何人都有任何想法......搜索其他线程无济于事......运行rails 4,mysql 5.6 ruby 1.9.3我在initil db:migrate之后创建的架构是:
ActiveRecord::Schema.define(version: 20131024161033) do
create_table "users", force: true do |t|
t.string "name"
t.string "email"
t.string "city"
t.string "state"
t.string "zip"
t.string "mobile_phone"
t.string "mobile_phone_type"
t.date "birth_date"
t.string "user_type"
t.string "ss_num"
t.boolean "agree_to_terms"
t.datetime "created_at"
t.datetime "updated_at"
end
end