On Feb 10, 2011, at 1:54 PM, Karl Smith wrote:

> Is :default allowed as an option for decimal columns?
> 
> A migration:
> class CreateMoney < ActiveRecord::Migration
>  def self.up
>    create_table :money do |t|
>      t.decimal :amount, :defaut => 0.0, :precision => 8, :scale => 2
>    end
>  end
> 
>  def self.down
>    drop_table :money
>  end
> end
> 
> Creates the following schema:
> 
> create_table "money", :force => true do |t|
>  t.decimal  "amount",          :precision => 8, :scale => 2
> end
> 
> What happened to the default, it's gone!
> 
> Bug? or do decimal columns disallow the :default option? or is it
> because :precision/:scale are also set?


defaut != default

You've got a typo.

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to 
rubyonrails-talk+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en.

Reply via email to