15 lines
404 B
Ruby
15 lines
404 B
Ruby
|
class UTable
|
||
|
include Mongoid::Document
|
||
|
include Mongoid::Timestamps
|
||
|
include OrbitCategory::Categorizable
|
||
|
include Slug
|
||
|
|
||
|
field :title, as: :slug_title, localize: true
|
||
|
|
||
|
has_many :table_columns, :dependent => :destroy
|
||
|
has_many :table_entries, :dependent => :destroy
|
||
|
|
||
|
accepts_nested_attributes_for :table_columns, :allow_destroy => true
|
||
|
|
||
|
FIELD_TYPES = ["text", "editor", "image", "date", "period"]
|
||
|
end
|