class CreateAsrModels < ActiveRecord::Migration[7.0]
  def change
    create_table :asr_models do |t|
      t.string :name
      t.string :value
      t.boolean :supports_translate

      t.timestamps
    end
  end
end
