discourse/db/migrate/20120910171504_remove_description_from_site_settings.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
239 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class RemoveDescriptionFromSiteSettings < ActiveRecord::Migration[4.2]
2013-02-06 03:16:51 +08:00
def up
remove_column :site_settings, :description
end
def down
add_column :site_settings, :description, :string
end
end