как создать числовой тип данных с масштабированием и точностью при создании таблицы
#ruby-on-rails #ruby-on-rails Вопрос: create_table :offers do |t| t.numeric(15,2) :total_sales t.numeric(10,2) :price t.numeric(10,2) :discount end Я получаю эту ошибку create_offers.rb:12: syntax error, unexpected ':', expecting keyword_end t.numeric(15,2) :total_sales ^ /home/gvpmahesh/code/present-app/present/db/migrate/20161017072207_create_offers.rb:13: syntax…