mirror of
https://github.com/neocities/neocities.git
synced 2026-05-26 14:17:25 +00:00
9 lines
141 B
Ruby
9 lines
141 B
Ruby
Sequel.migration do
|
|
up {
|
|
DB.add_index :sites, [:hits, :created_at]
|
|
}
|
|
|
|
down {
|
|
DB.drop_index :sites, [:hits, :created_at]
|
|
}
|
|
end |