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.
2023-07-12 00:47:08 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2020-12-17 23:30:41 -08:00
|
|
|
require Rails.root.join('lib', 'mastodon', 'migration_helpers')
|
|
|
|
|
|
|
|
class AddObfuscateToDomainBlocks < ActiveRecord::Migration[5.2]
|
|
|
|
include Mastodon::MigrationHelpers
|
|
|
|
|
|
|
|
disable_ddl_transaction!
|
|
|
|
|
|
|
|
def up
|
|
|
|
safety_assured { add_column_with_default :domain_blocks, :obfuscate, :boolean, default: false, allow_null: false }
|
|
|
|
end
|
|
|
|
|
|
|
|
def down
|
|
|
|
remove_column :domain_blocks, :obfuscate
|
|
|
|
end
|
|
|
|
end
|