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
DATES = ["2012-01-01", | |
"2012-02-01", | |
"2012-03-01", | |
"2012-04-01", | |
"2012-05-01", | |
"2012-06-01", | |
"2012-07-01", | |
"2012-08-01", | |
"2012-09-01", | |
"2012-10-01", |
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
Note 1. | |
Single Table Inheritance | |
http://api.rubyonrails.org/classes/ActiveRecord/Base.html | |
class Teacher < User | |
has_many :courses | |
end | |
class Course |
NewerOlder