sequel_enum icon indicating copy to clipboard operation
sequel_enum copied to clipboard

Enum-like functionality for your Sequel models

Results 2 sequel_enum issues
Sort by recently updated
recently updated
newest added

This opportunity is like on framework rails. I think, that is very convenient, when you get records from DB and work with speaking values(strings), not just "magic" integers

ActiveRecord's `enum` is capable of automatically generating scopes. Would be nice to have support for the feature here too. For instance: ```rb class Item < Sequel::Model plugin :enum enum :condition,...