class CreateInstructions < ActiveRecord::Migration[7.0]
  def change
    create_table :instructions do |t|
      t.text :system_prompt
      t.text :prompt
      t.float :temperature
      t.string :key

      t.timestamps
    end
  end
end
