Skip to content

Instantly share code, notes, and snippets.

@tankbusta
Created October 28, 2013 20:05
Show Gist options
  • Save tankbusta/7203635 to your computer and use it in GitHub Desktop.
Save tankbusta/7203635 to your computer and use it in GitHub Desktop.
class Article < ActiveRecord::Base
has_one :category
has_one :workflow_state
end
class WorkflowState < ActiveRecord::Base
belongs_to :article
validates :name, presence: true
validates :description, presence: true
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment