5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-06-01 09:04:17 +00:00
panel/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