7

因此,我尝试将“投票”列的默认值设置为 0,但是当我在 rails c 或通过单元测试创​​建答案实例时,投票值始终为nil. 关于为什么这不起作用的任何想法?

我已经像这样更改了迁移:

class AddVotesToAnswers < ActiveRecord::Migration
  def change
    add_column :answers, :votes, :integer, default: 0
  end
end

这是模型:

class Answer < ActiveRecord::Base
  attr_accessible :is_correct, :question_id, :title, :sms_answer_code, :votes

  belongs_to :question

  def upvote
    self.votes += 1
  end

end

测试规范

需要'spec_helper'

describe Answer do
  before do
    @answer = Answer.make!
  end

  it "should have a default vote value of zero" do
    binding.pry
    @answer.votes.should eq(0)
  end

end
4

2 回答 2

9

default必须在运行迁移时设置数据库迁移的 —— 在创建表后添加默认值是行不通的。

如果您的数据库已经播种(并且您不想更改架构),ActiveRecord 中的以下挂钩将完成这项工作:

class Answer < ActiveRecord::Base
    attr_accessible :is_correct, :question_id, :title, :sms_answer_code, :votes

    belongs_to :question

    before_save :default_vote_count

    def upvote
        self.votes += 1
    end

    def default_vote_count
        self.votes ||= 0
    end
end

编辑:

如果要更改数据库中的实际默认值,可以创建包含以下内容的更改迁移:

# in console
rails g migration change_default_for_answer_votes

# in migration file
class ChangeDefaultForAnswerVotes < ActiveRecord::Migration

  def change
    change_column :answers, :votes, :integer, :default => 0
  end

end

某些数据库(例如 Postgres)不会自动将新更新的默认值分配给现有的列条目,因此您需要遍历现有答案以手动将每个答案更新为默认票数:

# in console
Answer.update_all(votes: 0)
于 2013-06-10T02:25:02.743 回答
1

你需要这样说: add_column :answers, :votes, :integer, :default => 0

于 2013-06-10T02:15:46.497 回答