Can I use the t.money migration helper to create a column without a default currency?
create_table :product do |t|
t.money :price
end
creates:
t.string "price_currency", default: "ZWL", null: false
but would like:
t.string "price_currency", null: false