discourse/db/migrate/20120910171504_remove_descr...

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-05 14:16:51 -05:00
def up
remove_column :site_settings, :description
end
def down
add_column :site_settings, :description, :string
end
end