首頁  >  問答  >  主體

ruby - 新增小數列時出錯:精確度不能為空

資料庫遷移檔案如下

class CreateWorks < ActiveRecord::Migration
  def change
    create_table :works do |t|
      t.integer :project_id
      t.integer :user_id
      t.datetime :datetimeperformed
      t.decimal :hours, percision: 5, scale: 2
      t.timestamps null: false
    end
  end
end

執行:

rake db:migrate 

報錯誤
Error adding decimal column: precision cannot be empty if scale is specified

不知道是什麼原因,請幫忙看一下,謝謝!

天蓬老师天蓬老师2759 天前666

全部回覆(1)我來回復

  • 天蓬老师

    天蓬老师2017-04-24 09:15:08

    已解決,precision拼字錯誤!

    回覆
    0
  • 取消回覆