Enables usage of native sql enums with ActiveRecord
Version 1.0 of this is compatible with Rails 7 and above.
For Rails versions below Rails 7, use version 0.4
Add this line to your application's Gemfile:
gem 'sql_enum'
And then execute:
$ bundle
Or install it yourself as:
$ gem install sql_enum
Use a part of table definition:
class CreateUsers < ActiveRecord::Migration[5.1]
def change
create_table :users do |t|
t.enum :status, limit: [:active, :pending, :inactive], default: :active
t.timestamps
end
end
end
Or add an enum column:
add_column :users, :status, :enum, limit: [:active, :pending, :inactive], default: :active
class User < ActiveRecord::Base
sql_enum :status
end
Run docker-compose run --rm rspec
to run the specs in a docker container alongside Mysql.
Bug reports and pull requests are welcome on GitHub at https://github.com/1debit/sql_enum. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.
Inspiration from native_enum
The gem is available as open source under the terms of the MIT License.
Everyone interacting in the SqlEnum project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.