Skip to content

Instantly share code, notes, and snippets.

View pjho's full-sized avatar

Pat Horsley pjho

  • Wellington, New Zealand
View GitHub Profile
@pjho
pjho / index.md
Last active August 29, 2015 14:21 — forked from rstacruz/index.md

Rails Models

Generating models

$ rails g model User

Associations

belongs_to

has_one

ActiveRecord cheat sheet / EXAMPLES
INSTALL
=======
$ gem install activerecord
in GEMFILE: gem ‘activerecord’
REQUIRE
=======
require ‘active_record’