11 lines
192 B
Ruby
11 lines
192 B
Ruby
|
# encoding: utf-8
|
||
|
|
||
|
class ConferencePaperLevel
|
||
|
include Mongoid::Document
|
||
|
include Mongoid::Timestamps
|
||
|
|
||
|
field :title, localize: true
|
||
|
|
||
|
has_and_belongs_to_many :writing_conferences
|
||
|
|
||
|
end
|