2012-05-03 13:30:12 +00:00
|
|
|
class Journal
|
|
|
|
include Mongoid::Document
|
|
|
|
include Mongoid::Timestamps
|
|
|
|
|
|
|
|
field :user_id
|
|
|
|
field :title
|
|
|
|
|
|
|
|
belongs_to :user
|
|
|
|
has_many :papers, :autosave => true, :dependent => :destroy
|
|
|
|
|
|
|
|
before_create :initialize_paper
|
|
|
|
|
|
|
|
def initialize_paper
|
2012-07-03 11:45:47 +00:00
|
|
|
for i in 0..11
|
2012-05-03 13:30:12 +00:00
|
|
|
self.papers.build
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|