This is probably super basic but, well, I can't find it...
What's the best way to explore Rails from within the installation itself. Let me explain. I'm looking at some Migration code and curious what a symbol means. How/where do I look that up? In this case, specifically, i'm curious about :force => true
and what it's doing but the more general 'how do I go about answering this for myself w/out SO or Googling?' is the bigger question...
class CreateHomes < ActiveRecord::Migration
def self.up
create_table :homes, :force => true do |t|
t.column :name, :string
t.column :city, :string
# ...
end
end
end