7 lines
158 B
Ruby
7 lines
158 B
Ruby
class RemoveNsigParentFromWallets < ActiveRecord::Migration[5.2]
|
|
def change
|
|
remove_column :wallets, :nsig
|
|
remove_column :wallets, :parent
|
|
end
|
|
end
|