blob: 782c67db1ea769eda759293507090aa4aa44e637 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
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
|