Skip to content

Instantly share code, notes, and snippets.

@NaiyaShah-BTC
Created April 30, 2019 06:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save NaiyaShah-BTC/748f97d0d31be90715ad836d370e3e32 to your computer and use it in GitHub Desktop.
Save NaiyaShah-BTC/748f97d0d31be90715ad836d370e3e32 to your computer and use it in GitHub Desktop.
class Feed < ActiveRecord::Base
enum status: %i[ active pending trashed ]
end
Feed.not_active # => where.not(status: :active)
Feed.not_pending # => where.not(status: :pending)
Feed.not_trashed # => where.not(status: :trashed)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment