1
0
Fork 0
mirror of https://github.com/mastodon/mastodon.git synced 2024-08-20 21:08:15 -07:00
mastodon/db/migrate/20200312144258_add_title_to_account_warning_presets.rb

13 lines
318 B
Ruby

# frozen_string_literal: true
class AddTitleToAccountWarningPresets < ActiveRecord::Migration[5.2]
disable_ddl_transaction!
def up
safety_assured { add_column :account_warning_presets, :title, :string, default: '', null: false }
end
def down
remove_column :account_warning_presets, :title
end
end