Class: ViewType

Inherits:
ActiveRecord::Base
  • Object
show all
Defined in:
app/models/view_type.rb

Overview

create_table :view_types do |t| t.string :internal_identifier t.string :description

# these columns are required to support the behavior of the plugin 'awesome_nested_set'
t.integer :lft
t.integer :rgt
t.integer :parent_id

t.timestamps

end