dawarich/db/migrate/20240323161049_add_index_to_points_timestamp.rb

6 lines
120 B
Ruby
Raw Normal View History

2024-03-23 15:29:55 -04:00
class AddIndexToPointsTimestamp < ActiveRecord::Migration[7.1]
def change
add_index :points, :timestamp
end
end