mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 06:49:14 +08:00
16 lines
324 B
Ruby
16 lines
324 B
Ruby
|
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
|