为什么在创建用户和帖子之间的关联后我的数据库迁移失败?

Why does my database migration fail after creating an association between users and posts?

我正在创建一个写作应用程序,用户 has_many 发帖。

我生成了一个迁移以将用户 ID 添加到帖子中,但我现在收到此错误:

rake aborted!
StandardError: An error has occurred, this and all later migrations canceled:

SQLite3::SQLException: duplicate column name: user_id: ALTER TABLE "posts" ADD "user_id" integer/usr/local/rvm/gems/ruby-2.1.4@rails4/gems/sqlite3-1.3.10/lib/sqlite3/database.rb:91:in `initialize'

这是我将 user_id 添加到帖子的迁移:

class AddUserIdToPosts < ActiveRecord::Migration
  def change
    add_column :posts, :user_id, :integer
    add_index :posts, :user_id
  end
end

我已经 运行 之前进行了两次迁移,一次是创建帖子,一次是使用 Devise 创建用户。这两个文件在下面。

这是使用 Devise 创建用户的迁移:

class DeviseCreateUsers < ActiveRecord::Migration
  def change
    create_table(:users) do |t|
      ## Database authenticatable
      t.string :email,              null: false, default: ""
      t.string :encrypted_password, null: false, default: ""

      ## Recoverable
      t.string   :reset_password_token
      t.datetime :reset_password_sent_at

      ## Rememberable
      t.datetime :remember_created_at

      ## Trackable
      t.integer  :sign_in_count, default: 0, null: false
      t.datetime :current_sign_in_at
      t.datetime :last_sign_in_at
      t.string   :current_sign_in_ip
      t.string   :last_sign_in_ip

      ## Confirmable
      # t.string   :confirmation_token
      # t.datetime :confirmed_at
      # t.datetime :confirmation_sent_at
      # t.string   :unconfirmed_email # Only if using reconfirmable

      ## Lockable
      # t.integer  :failed_attempts, default: 0, null: false # Only if lock strategy is :failed_attempts
      # t.string   :unlock_token # Only if unlock strategy is :email or :both
      # t.datetime :locked_at


      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
  end
end

下面是创建帖子的迁移:

class CreatePosts < ActiveRecord::Migration
  def change
    create_table :posts do |t|
      t.string :title
      t.text :body1
      t.text :body2
      t.text :body3

      t.timestamps
    end
  end
end

我理解错误背后的逻辑,但我不知道在哪里或如何修复它。

我是否必须更改这些文件、销毁迁移并再次运行它们,或者做其他事情?

谢谢。

AddUserIdToPosts 迁移中的第一个 end 之后尝试 运行 add_index。您可能需要先 $ rake db:rollback

add_column :posts, :user_id, :integer 更改为 add_column :posts, :user_id, :integer, index: true