class CreateFeatureModelMaps < ActiveRecord::Migration[7.0]
  def change
    create_table :feature_model_maps do |t|
      t.string :feature_name
      t.string :llm_model_name

      t.timestamps
    end
  end
end
