12 lines
252 B
Ruby
12 lines
252 B
Ruby
# frozen_string_literal: true
|
|
|
|
class CreateProceduresAndZones < ActiveRecord::Migration[6.1]
|
|
def change
|
|
create_table :procedures_zones, id: false do |t|
|
|
t.belongs_to :procedure
|
|
t.belongs_to :zone
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|