This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2019-12-18 10:04:43 -08:00
|
|
|
require Rails.root.join('lib', 'mastodon', 'migration_helpers')
|
|
|
|
|
2019-12-17 04:30:58 -08:00
|
|
|
class IncreaseBackupSize < ActiveRecord::Migration[5.2]
|
2019-12-18 10:04:43 -08:00
|
|
|
include Mastodon::MigrationHelpers
|
|
|
|
|
|
|
|
disable_ddl_transaction!
|
|
|
|
|
2019-12-17 04:30:58 -08:00
|
|
|
def up
|
2019-12-18 10:04:43 -08:00
|
|
|
safety_assured do
|
|
|
|
change_column_type_concurrently :backups, :dump_file_size, :bigint
|
|
|
|
cleanup_concurrent_column_type_change :backups, :dump_file_size
|
|
|
|
end
|
2019-12-17 04:30:58 -08:00
|
|
|
end
|
|
|
|
|
|
|
|
def down
|
2019-12-18 10:04:43 -08:00
|
|
|
safety_assured do
|
|
|
|
change_column_type_concurrently :backups, :dump_file_size, :integer
|
|
|
|
cleanup_concurrent_column_type_change :backups, :dump_file_size
|
|
|
|
end
|
2019-12-17 04:30:58 -08:00
|
|
|
end
|
|
|
|
end
|