rails默认范围,以及迁移中的默认列值

时间:2010-10-20 06:10:37

标签: ruby-on-rails ruby-on-rails-3 migration default-scope

class CreateCrews < ActiveRecord::Migration
  def self.up
    create_table :crews do |t|
      t.string :title
      t.text :description
      t.boolean :adult
      t.boolean :private
      t.integer :gender_id
      t.boolean :approved, :default => false
      t.timestamps
    end
  end
  def self.down
    drop_table :crews
  end
end


class Crew < ActiveRecord::Base
  has_many :users, :through => :crew_users
  belongs_to :user

  default_scope where(:approved => true)
end

当我进入控制台并创建新记录时,“approved”属性设置为true,为什么?

如何将其自动设置为默认值(false),如我的迁移文件中所示?

wojciech@vostro:~/work/ze$ rails console Loading development environment (Rails 3.0.0) ruby-1.9.2-p0 > c = Crew.new => #<Crew id: nil, title: nil, description: nil, adult: nil, private: nil, gender_id: nil, approved: true, created_at: nil, updated_at: nil, logo_file_name: nil, logo_content_type: nil, logo_file_size: nil, logo_updated_at: nil>

2 个答案:

答案 0 :(得分:12)

The documentation fordefault_scope表示提供的范围适用于查询和新对象。模型级别提供的缺省值始终优先于模式级别提供的缺省值,因为它们是在将数据发送到数据库之前在应用程序内部创建的。

您可以使用unscoped暂时跳过所有范围(包括default_scope)。这应该允许较低级别的数据库默认机制生效 *

Crew.unscoped.new

* ActiveRecord模糊了数据库(模式)中定义的默认值与应用程序(模型)中的默认值之间的差异。在初始化期间,它解析数据库模式并记录在那里指定的任何默认值。稍后,在创建对象时,它会分配这些模式指定的默认值,而不会触及数据库。例如,您将在approved: false的结果中看到approved: nil(而不是Crew.unscoped.new),即使数据从未发送到数据库以使其填充其默认值( ActiveRecord根据从模式中提取的信息抢先填写默认值。 功能

答案 1 :(得分:1)

一个小技巧是使用

default_scope -> { where('crews.approved = 1') }