1
0
Fork 0
mirror of https://github.com/neocities/neocities.git synced 2025-05-16 09:27:20 +02:00
neocities/migrations/077_decimal_sauce_index.rb
2015-08-28 01:04:17 -07:00

9 lines
114 B
Ruby

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