Created
December 22, 2014 15:41
-
-
Save thenickcox/89b0435a867c8abe754e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[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