Skip to content

Instantly share code, notes, and snippets.

@oleander
Created April 27, 2010 20:49
Show Gist options
  • Save oleander/381306 to your computer and use it in GitHub Desktop.
Save oleander/381306 to your computer and use it in GitHub Desktop.
class Service < ActiveRecord::Base
has_many :urls
validates_presence_of :name
end
class Url < ActiveRecord::Base
belongs_to :service
validates_presence_of :url, :service
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment