Created
March 23, 2012 06:45
-
-
Save them0nk/2167767 to your computer and use it in GitHub Desktop.
Rails Model
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
#To get a column from a Model | |
Movie.all # Returns all row from the table Movies | |
Movie.select(:title).map { |m| m.title } # Returns array of title from the Model movie | |
Movie.select(:title).map(&:title) # Returns array of title from the Model movie | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment