femslash-city/migrations/132_add_stats_site_date_index.rb

5 lines
131 B
Ruby
Raw Normal View History

Sequel.migration do
change do
alter_table(:stats) { add_index [:site_id, :created_at], name: :stats_site_date_idx }
end
end