0

次のような User モデルがあります。

class CreateUsers < ActiveRecord::Migration
  def change
    create_table :users do |t|
      t.string :name
      t.string :email
      t.string :password_digest
      t.boolean :admin, default: false
      t.boolean :active, default: false
      t.string :auth_token
      t.string :password_reset_token
      t.datetime :password_reset_sent_at
      t.timestamps
    end
  end
end

管理者はユーザーを作成できます。ユーザー作成フォームのチェックボックスではなく、ラジオボタングループの両方を作成する:adminにはどうすればよいですか? :active新しいユーザーを:admin:active、または両方ではなくどちらかにする必要があります。

4

2 に答える 2