mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 21:57:36 +08:00
10 lines
203 B
Ruby
10 lines
203 B
Ruby
class RemoveDescriptionFromSiteSettings < ActiveRecord::Migration
|
|
def up
|
|
remove_column :site_settings, :description
|
|
end
|
|
|
|
def down
|
|
add_column :site_settings, :description, :string
|
|
end
|
|
end
|