Skip to content

Instantly share code, notes, and snippets.

@tammersaleh
Created November 11, 2009 23:07
Show Gist options
  • Save tammersaleh/232416 to your computer and use it in GitHub Desktop.
Save tammersaleh/232416 to your computer and use it in GitHub Desktop.
class ProductState < ActiveRecord::Base
attr_accessible :name, :description
acts_as_enumeration :new, :active, :locked, :sold, :expired, :removed, :deleted
validates_presence_of :description
def to_s
name
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment