aad61b36bc
Also, remove the dates and duration from the highlights records. Those are not relevant, only the events-derived key is. If two users with different timezones have different activities, they should see different summaries.
7 lines
189 B
Ruby
7 lines
189 B
Ruby
class RemoveDatesFromPeriodHighlights < ActiveRecord::Migration[8.1]
|
|
def change
|
|
remove_column :period_highlights, :starts_at
|
|
remove_column :period_highlights, :duration
|
|
end
|
|
end
|