Files
rails/activerecord/test/models/without_table.rb

6 lines
105 B
Ruby

class WithoutTable < ActiveRecord::Base
def self.default_scope
where(:published => true)
end
end