開発環境
Mac
Ruby 2.6.5
Rails 6.1.3.2
エラーメッセージ
$ The name 'Entry' is either already used in your application or reserved by Ruby on Rails.Please choose an alternative or use --skip-collision-check or --force to skip this check and run this generator again.
解決方法
% rails destroy model entry
この後
invoke active_record
remove db/migrate/日にち_create_entries.rb
remove app/models/entry.rb
invoke test_unit
remove test/models/entry_test.rb
remove test/fixtures/entries.yml
が出ればモデルの削除ができています。
エラーの意味と原因
モデルを既に作成していました。