コマンドで匿名モデルを作成しました
rails g model Anonymous section_id:integer aid:string fake:bool active:bool
ただし、移行のテーブル名は匿名と呼ばれます
class CreateAnonymous < ActiveRecord::Migration
  def change
    create_table :anonymous do |t|
      t.integer :section_id
      t.string :aid
      t.bool :fake
      t.bool :active
      t.timestamps
    end
  end
end
Anonymous の複数形も Anomymous であるというのは正しいですか? (英語は私の母国語ではありません)。Rails がモデルに付けた複数形の名前を確認するにはどうすればよいですか? みたいなrake routes?