5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-05-17 02:40:48 +00:00
panel/db/migrate/20210511211357_change_bytes_to_big_int.rb
2021-05-11 18:16:34 -03:00

6 lines
128 B
Ruby

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