So I just started an empty rails project this morning and tested it all out. Here's the steps to reproduce all errors. 1. rails new project with ruby 3.2.0 and rails 7.0.8. 2. Add to Gemfile: (also tried w/out 'ksuid' same error) ``` gem 'ksuid' gem 'activerecord-ksuid', require: 'active_record/ksuid/railtie' ``` 3. Run `rails generate model Event my_field_name:ksuid` => creates error. 4. Create a migration file and use `add_column` => creates error. 5. Create a migration file and use `create_table` => does not create error and works as expected. _Originally posted by @DataDaoDe in https://github.com/michaelherold/ksuid-ruby/issues/21#issuecomment-1772125330_