6 lines
173 B
Ruby
6 lines
173 B
Ruby
class AddParentIdToCurrency < ActiveRecord::Migration[5.2]
|
|
def change
|
|
add_reference :currencies, :parent, type: :string, index: true, after: :blockchain_key
|
|
end
|
|
end
|