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

15 lines
311 B
Ruby

# frozen_string_literal: true
class AddOverwriteToImports < ActiveRecord::Migration[5.2]
disable_ddl_transaction!
def up
safety_assured do
add_column :imports, :overwrite, :boolean, default: false, null: false
end
end
def down
remove_column :imports, :overwrite, :boolean
end
end