6 lines
172 B
Ruby
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
|