Answers for "rails float field"

0

rails float field model

Copyclass CreateFakes < ActiveRecord::Migration
  def change
    create_table :fakes do |t|
      t.decimal :float_value, :precision => 4, :scale => 3
    end
  end
end
Posted by: Guest on June-13-2020
0

number field for float or integer form_with

f.number_field :amount, value: number_to_currency(f.object.amount.to_f, delimiter: '', unit: ''), step: :any
Posted by: Guest on February-09-2020

Browse Popular Code Answers by Language