Farmbot-Web-App/db/migrate/20170518182029_add_polymorp...

10 lines
366 B
Ruby

class AddPolymorphicConstraints < ActiveRecord::Migration[5.1]
def change
add_polymorphic_constraints :pointer,
:points,
polymorphic_models: [:plant,
:tool_slot,
:generic_pointer]
end
end