2023-07-12 07:47:08 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-12-18 18:04:43 +00:00
|
|
|
require Rails.root.join('lib', 'mastodon', 'migration_helpers')
|
|
|
|
|
2019-12-17 12:30:58 +00:00
|
|
|
class IncreaseBackupSize < ActiveRecord::Migration[5.2]
|
2019-12-18 18:04:43 +00:00
|
|
|
include Mastodon::MigrationHelpers
|
|
|
|
|
|
|
|
disable_ddl_transaction!
|
|
|
|
|
2019-12-17 12:30:58 +00:00
|
|
|
def up
|
2019-12-18 18:04:43 +00: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 12:30:58 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def down
|
2019-12-18 18:04:43 +00: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 12:30:58 +00:00
|
|
|
end
|
|
|
|
end
|