dawarich/db/migrate/20240323161049_add_index_to_points_timestamp.rb
2024-03-23 20:29:55 +01:00

5 lines
120 B
Ruby

class AddIndexToPointsTimestamp < ActiveRecord::Migration[7.1]
def change
add_index :points, :timestamp
end
end