mirror of
https://github.com/neocities/neocities.git
synced 2025-04-25 01:32:36 +02:00
11 lines
249 B
Ruby
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
|