mirror of
https://github.com/internetee/registry.git
synced 2025-08-03 00:12:03 +02:00
7 lines
162 B
Ruby
7 lines
162 B
Ruby
class AddCurrencyToAccount < ActiveRecord::Migration
|
|
def change
|
|
add_column :accounts, :currency, :string
|
|
|
|
Account.update_all(currency: 'EUR')
|
|
end
|
|
end
|