chinwagsocial/db/migrate/20191212003415_increase_bac...

10 lines
200 B
Ruby

class IncreaseBackupSize < ActiveRecord::Migration[5.2]
def up
change_column :backups, :dump_file_size, :bigint
end
def down
change_column :backups, :dump_file_size, :integer
end
end