mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-02 14:07:35 +08:00
This reduces chances of errors where consumers of strings mutate inputs and reduces memory usage of the app. Test suite passes now, but there may be some stuff left, so we will run a few sites on a branch prior to merging
17 lines
355 B
Ruby
17 lines
355 B
Ruby
# frozen_string_literal: true
|
|
|
|
class MakeSiteSettingsUnique < ActiveRecord::Migration[5.2]
|
|
def up
|
|
execute <<~SQL
|
|
DELETE
|
|
FROM site_settings a USING site_settings b
|
|
WHERE a.id < b.id AND a.name = b.name
|
|
SQL
|
|
|
|
add_index :site_settings, [:name], unique: true
|
|
end
|
|
|
|
def down
|
|
remove_index :site_settings, [:name]
|
|
end
|
|
end
|