1
0
Fork 0
mirror of https://github.com/neocities/neocities.git synced 2025-05-12 09:48:31 +02:00
neocities/migrations/088_site_change_files_indexes.rb
2016-04-18 21:29:14 -07:00

11 lines
249 B
Ruby

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