FIX: remove deleted wiki color from existing color schemes

This commit is contained in:
Régis Hanol 2016-03-29 12:12:33 +02:00
parent f907b42f0a
commit b40efb98b8

View file

@ -0,0 +1,8 @@
class RemoveWikiColor < ActiveRecord::Migration
def up
execute "DELETE FROM color_scheme_colors WHERE name = 'wiki'"
end
def down
end
end