sutty/db/migrate/20210511211357_change_bytes_to_big_int.rb

6 lines
128 B
Ruby
Raw Permalink Normal View History

class ChangeBytesToBigInt < ActiveRecord::Migration[6.1]
def change
change_column :build_stats, :bytes, :bigint
end
end