dawarich/db/data/20250704185707_create_tracks_from_points.rb

13 lines
271 B
Ruby

# frozen_string_literal: true
class CreateTracksFromPoints < ActiveRecord::Migration[8.0]
def up
# this data migration used to create tracks from existing points. It was deprecated
nil
end
def down
raise ActiveRecord::IrreversibleMigration
end
end