Rails3.0.4 ruby1.9.2 mysql2 一个Error

1、

>rails g scaffold article title:string a:string b:string d:string e:string f:string body:text

 2、

 

class CreateArticles < ActiveRecord::Migration
  def self.up
    create_table :articles do |t|
      t.string :title
      t.string :a
      t.string :b
      t.string :d
      t.string :e
      t.string :f
      t.text :body

      t.timestamps
    end
  end

  def self.down
    drop_table :articles
  end
end

 

 3、

 

rake db:migrate

 4、


Rails3.0.4 ruby1.9.2 mysql2 一个Error

 

Body text 变成 #<BigDecimal:1ebb0c8,'0.0',4(8)>

 

 

折腾了一下午

为什么 第七个就变成 BigDecimal 了呢,请高手解答

你可能感兴趣的:(F#,UP,Rails,ActiveRecord)