class CreateElements < ActiveRecord::Migration[7.1] def change create_table :elements do |t| t.references :report, null: false, foreign_key: true t.string :path t.string :title t.timestamps end end end