mirror of
https://github.com/internetee/registry.git
synced 2025-08-01 23:42:04 +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
|