aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/migrations/magic/1_currencies_have_symbols.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/test/migrations/magic/1_currencies_have_symbols.rb')
-rw-r--r--activerecord/test/migrations/magic/1_currencies_have_symbols.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/activerecord/test/migrations/magic/1_currencies_have_symbols.rb b/activerecord/test/migrations/magic/1_currencies_have_symbols.rb
index 53b263bf55..d4b0e6cd95 100644
--- a/activerecord/test/migrations/magic/1_currencies_have_symbols.rb
+++ b/activerecord/test/migrations/magic/1_currencies_have_symbols.rb
@@ -2,8 +2,8 @@
class CurrenciesHaveSymbols < ActiveRecord::Migration::Current
def self.up
- # We use ¤ for default currency symbol
- add_column "currencies", "symbol", :string, :default => "¤"
+ # We use € for default currency symbol
+ add_column "currencies", "symbol", :string, default: "€"
end
def self.down