18 lines
709 B
Ruby
18 lines
709 B
Ruby
class RemoveEmailInAddressSetting < ActiveRecord::Migration
|
|
def up
|
|
cat_id_r = ActiveRecord::Base.exec_sql("SELECT value FROM site_settings WHERE name = 'email_in_category'").first
|
|
email_r = ActiveRecord::Base.exec_sql("SELECT value FROM site_settings WHERE name = 'email_in_address'").first
|
|
if cat_id_r && email_r
|
|
category_id = cat_id_r["value"].to_i
|
|
email = email_r["value"]
|
|
ActiveRecord::Base.exec_sql("UPDATE categories SET email_in = ? WHERE id = ?", email, category_id)
|
|
end
|
|
|
|
ActiveRecord::Base.exec_sql("DELETE FROM site_settings WHERE name = 'email_in_category' OR name = 'email_in_address'")
|
|
end
|
|
|
|
def down
|
|
# this change is backwards-compatible
|
|
end
|
|
end
|