index score, filter site_changed for compute

This commit is contained in:
Kyle Drake 2015-08-28 01:04:17 -07:00
parent a732cfda88
commit b75116d13c
2 changed files with 10 additions and 1 deletions

View file

@ -0,0 +1,9 @@
Sequel.migration do
up {
DB.add_index :sites, :score
}
down {
DB.drop_index :sites, :score
}
end