Created
October 22, 2008 17:35
-
-
Save davidpp/18707 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
| class Question < ActiveRecord::Base | |
| belongs_to :category | |
| belongs_to :pack | |
| # TODO Doit etre possible de le limiter | |
| # a une categorie passe en parametre et au question appartenant a un set | |
| # en particulier | |
| named_scope :random, :limit => 1,:order => 'RAND()' | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment