main
 1class CreateSparkles < ActiveRecord::Migration[6.1]
 2  def change
 3    create_table :sparkles do |t|
 4      t.string :reason
 5      t.references :sparkler, index: true, null: false
 6      t.references :sparklee, index: true, null: false
 7
 8      t.timestamps
 9    end
10  end
11end