mirror of
https://github.com/discourse/discourse.git
synced 2025-03-23 17:55:45 +08:00
FIX: Remove duplicate site settings and add unique index
This commit is contained in:
parent
cd4fd447ca
commit
cb70a328f5
15
db/migrate/20190325162154_make_site_settings_unique.rb
Normal file
15
db/migrate/20190325162154_make_site_settings_unique.rb
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
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
|
Loading…
x
Reference in New Issue
Block a user