mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-11 01:31:39 -05:00
Fix data migration that prevented the application from starting.
This commit is contained in:
parent
5b0464278f
commit
54959b5add
3 changed files with 8 additions and 2 deletions
|
|
@ -1 +1 @@
|
||||||
0.15.9
|
0.15.10
|
||||||
|
|
|
||||||
|
|
@ -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/)
|
The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
||||||
and this project adheres to [Semantic Versioning](http://semver.org/).
|
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
|
# 0.15.9 - 2024-10-24
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,7 @@ class RemovePointsWithoutCoordinates < ActiveRecord::Migration[7.1]
|
||||||
|
|
||||||
Rails.logger.info 'Points without coordinates removed.'
|
Rails.logger.info 'Points without coordinates removed.'
|
||||||
|
|
||||||
StatCreatingJob.perform_later(User.pluck(:id))
|
BulkStatsCalculatingJob.perform_later(User.pluck(:id))
|
||||||
end
|
end
|
||||||
|
|
||||||
def down
|
def down
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue