nccu-news/app/models/department.rb

13 lines
233 B
Ruby
Raw Normal View History

2014-11-07 08:44:11 +00:00
# encoding: utf-8
class Department
include Mongoid::Document
include Mongoid::Timestamps
2015-09-24 08:04:26 +00:00
field :name, :localize => true
2014-11-07 08:44:11 +00:00
field :sort_number, :type => Integer
field :should_destroy, :type => Boolean
belongs_to :unit
end