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

6 lines
168 B
Ruby

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