Skip to content

Instantly share code, notes, and snippets.

@swalkinshaw
Created April 1, 2015 15:18
Show Gist options
  • Save swalkinshaw/10cdb92539e75717b728 to your computer and use it in GitHub Desktop.
Save swalkinshaw/10cdb92539e75717b728 to your computer and use it in GitHub Desktop.
class Model < ActiveRecord::Base
enum status: {
cancelled: 'cancelled',
delayed: 'delayed',
final: 'final',
suspended: 'suspended'
}
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment