fix(geoarea): fix again new geo_areas#geometry nil

This commit is contained in:
Colin Darie 2023-04-21 18:04:23 +02:00
parent 25956c5141
commit f5c8271e26
No known key found for this signature in database
GPG key ID: 4FB865FDBCA4BCC4

View file

@ -0,0 +1,13 @@
namespace :after_party do
desc 'Deployment task: fix_geo_area_without_geometry_again'
task fix_geo_area_without_geometry_again: :environment do
puts "Running deploy task 'fix_geo_area_without_geometry_again'"
Rake::Task['after_party:fix_geo_area_without_geometry'].invoke
# Update task as completed. If you remove the line below, the task will
# run with every deploy (or every time you call after_party:run).
AfterParty::TaskRecord
.create version: AfterParty::TaskRecorder.new(__FILE__).timestamp
end
end