我正在创建一个用户有很多帖子的写作应用程序。
我生成了一个迁移,将用户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
我理解错误背后的逻辑,但我看不到在哪里或如何解决它。
我是否必须更改这些文件,销毁迁移并再次运行它们,或者执行其他操作?
感谢。
答案 0 :(得分:1)
从add_column :posts, :user_id, :integer
更改为add_column :posts, :user_id, :integer, index: true
答案 1 :(得分:0)
尝试在add_index
迁移中的第一个end
后运行AddUserIdToPosts
。您可能需要先$ rake db:rollback
。