Fix data migration that prevented the application from starting.

This commit is contained in:
Eugene Burmakin 2024-10-25 08:59:19 +02:00
parent 5b0464278f
commit 54959b5add
3 changed files with 8 additions and 2 deletions

View file

@ -1 +1 @@
0.15.9
0.15.10

View file

@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).
# 0.15.10 - 2024-10-25
### Fixed
- Data migration that prevented the application from starting.
# 0.15.9 - 2024-10-24
### Fixed

View file

@ -12,7 +12,7 @@ class RemovePointsWithoutCoordinates < ActiveRecord::Migration[7.1]
Rails.logger.info 'Points without coordinates removed.'
StatCreatingJob.perform_later(User.pluck(:id))
BulkStatsCalculatingJob.perform_later(User.pluck(:id))
end
def down