femslash-city/migrations/098_add_follow_count_index.rb

10 lines
128 B
Ruby
Raw Permalink Normal View History

Sequel.migration do
up {
DB.add_index :sites, :follow_count
}
down {
DB.drop_index :sites, :follow_count
}
end