acts_as_state_machine :initial => :created, :column => 'status'
# These are all of the states for the existing system.
state :submitted
state :processing
state :nonprofit_reviewing
state :accepted
Oh... apparently, you need to add
state :created
to it as well :)
No comments:
Post a Comment