Files
Dena/db/migrate/20190902134819_remove_nsig_parent_from_wallets.rb
2026-08-13 19:50:53 +03:30

7 lines
158 B
Ruby

class RemoveNsigParentFromWallets < ActiveRecord::Migration[5.2]
def change
remove_column :wallets, :nsig
remove_column :wallets, :parent
end
end