Remove unused KeyValue model (#3206).

This commit is contained in:
evazion
2017-07-09 14:09:02 -05:00
parent af35c82d96
commit f3b0a0a9e9
3 changed files with 11 additions and 58 deletions

View File

@@ -0,0 +1,9 @@
class DropKeyValues < ActiveRecord::Migration
def up
drop_table :key_values
end
def down
raise ActiveRecord::IrreversibleMigration, "Can't recover the lost data"
end
end