Add indexes to site_change_files

This commit is contained in:
Kyle Drake 2016-04-18 21:29:14 -07:00
parent bafe75463a
commit be6196d67c

View file

@ -0,0 +1,11 @@
Sequel.migration do
up {
DB.add_index :site_change_files, :site_change_id
DB.add_index :site_change_files, :site_id
}
down {
DB.drop_index :site_change_files, :site_change_id
DB.drop_index :site_change_files, :site_id
}
end