Skip to content

Instantly share code, notes, and snippets.

@jamesjtong
Created June 13, 2014 23:14
Show Gist options
  • Save jamesjtong/0088e602f9cca1eab6bd to your computer and use it in GitHub Desktop.
Save jamesjtong/0088e602f9cca1eab6bd to your computer and use it in GitHub Desktop.
class Account < ActiveRecord::Base
has_many :users
end
class User < ActiveRecord::Base
belongs_to :account
end
database tables
Accounts
id | salesforce_id|
Users
id | account_salesforce_id
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment