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

6 lines
172 B
Ruby

class DropStepFromBlockchain < ActiveRecord::Migration[5.2]
def change
remove_column :blockchains, :step, :integer, default: 6, null: false, after: :height
end
end