mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-11 09:41:40 -05:00
10 lines
209 B
Ruby
10 lines
209 B
Ruby
|
|
# frozen_string_literal: true
|
||
|
|
|
||
|
|
class AddTrackIdToPoints < ActiveRecord::Migration[8.0]
|
||
|
|
disable_ddl_transaction!
|
||
|
|
|
||
|
|
def change
|
||
|
|
add_reference :points, :track, index: { algorithm: :concurrently }
|
||
|
|
end
|
||
|
|
end
|