Skip to content

Instantly share code, notes, and snippets.

@thenickcox
Created December 22, 2014 15:41
Show Gist options
  • Save thenickcox/89b0435a867c8abe754e to your computer and use it in GitHub Desktop.
Save thenickcox/89b0435a867c8abe754e to your computer and use it in GitHub Desktop.
[1] pry(main)> Album.where(title: 'A Love Supreme').first
Album Load (2.1ms) SELECT "albums".* FROM "albums" WHERE "albums"."title" = 'A Love Supreme' ORDER BY "albums"."id" ASC LIMIT 1
=> #<Album id: 1, artist: "John Coltrane", title: "A Love Supreme", year: 1965, song_count: 3, user_id: 2, created_at: "2014-11-29 23:21:16", updated_at: "2014-12-08 15:23:54", featured: false>
[2] pry(main)> Album.where(title: 'A Love Supreme').first.update_attribute(:featured, true)
Album Load (0.5ms) SELECT "albums".* FROM "albums" WHERE "albums"."title" = 'A Love Supreme' ORDER BY "albums"."id" ASC LIMIT 1
(0.1ms) BEGIN
SQL (0.3ms) UPDATE "albums" SET "featured" = $1, "updated_at" = $2 WHERE "albums"."id" = 1 [["featured", "t"], ["updated_at", "2014-12-15 15:46:19.646739"]]
(1.0ms) COMMIT
=> true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment