1
0
mirror of https://github.com/glitch-soc/mastodon.git synced 2025-03-01 22:13:48 -05:00
tootlab-mastodon/db/migrate/20170609145826_remove_default_language_from_statuses.rb

12 lines
259 B
Ruby

# frozen_string_literal: true
class RemoveDefaultLanguageFromStatuses < ActiveRecord::Migration[5.1]
def up
change_column :statuses, :language, :string, default: nil, null: true
end
def down
raise ActiveRecord::IrreversibleMigration
end
end